:root {
  --primary: #c8960c;
  --primary-light: #e8bf4a;
  --bg-dark: #09080c;
  --surface: #13110a;
  --surface-sec: #1e1a0e;
  --text-main: #f5e9b0;
  --text-sec: #a8996a;
  --success: #4caf6e;
  --border: #3a2e10;
  --gradient: linear-gradient(90deg, #c8960c, #e8bf4a);

  --font-display: "Cinzel", serif;
  --font-body: "DM Sans", sans-serif;
  --font-accent: "Cinzel Decorative", serif;

  --radius-sm: 8px;
  --radius-pill: 999px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient);
  color: var(--bg-dark);
  font-weight: 700;
}
.btn-primary:hover {
  box-shadow: 0 0 15px rgba(200, 150, 12, 0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--primary);
}
.btn-secondary:hover {
  background: rgba(200, 150, 12, 0.1);
  border-color: var(--primary-light);
}

/* Utilities */
.text-gold {
  color: var(--primary);
}
.text-sec {
  color: var(--text-sec);
}
.text-center {
  text-align: center;
}
.bg-dark {
  background-color: var(--bg-dark);
}
.bg-surface {
  background-color: var(--surface);
}

section {
  padding: 80px 5%;
}
@media (max-width: 767px) {
  section {
    padding: 52px 5%;
  }
}

.section-header {
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 32px;
  border-left: 3px solid var(--primary);
  padding-left: 16px;
  line-height: 1.2;
}
.section-header.center h2 {
  border-left: none;
  padding-left: 0;
  text-align: center;
}

/* Navbar - Default dark for inner pages */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 12px 5%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
  margin-left: 40px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-actions {
  display: flex;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-main);
  transition: 0.3s;
}

/* Hero (About Page) */
.hero {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 5% 80px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg-dark) 50%, transparent 100%);
  z-index: -1;
}
.hero-content {
  max-width: 720px;
  z-index: 1;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero p {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.9;
  margin-bottom: 24px;
}
.hero p:last-child {
  margin-bottom: 0;
}

/* Standard Content */
.content-p {
  font-size: 16px;
  color: var(--text-sec);
  margin-bottom: 24px;
  line-height: 1.85;
}
.content-h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
  margin: 32px 0 16px;
}

/* Milestones Timeline */
.timeline-wrapper {
  display: flex;
  max-width: 1000px;
  margin: 60px auto 0;
}
.timeline-spacer {
  width: 40%;
}
.timeline-container {
  width: 60%;
  position: relative;
  padding-left: 40px;
}
.timeline-line {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-node {
  position: absolute;
  left: -44px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  transform: rotate(45deg);
}
.timeline-date {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.7;
}

/* Split Section */
.split-section {
  display: grid;
  align-items: flex-start;
  gap: 48px;
}
.split-text-first {
  grid-template-columns: 6fr 4fr;
}
.split-img {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* License Items */
.license-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.license-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.license-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 8px;
}
.license-item p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
}

/* Core Values Cards */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.core-value-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 32px;
  min-height: 260px;
}
.cv-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.cv-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
}
.cv-header h3 {
  font-size: 20px;
  color: var(--text-main);
}
.cv-desc {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.85;
}

/* Inline Providers List */
.inline-bullet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.inline-bullet-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-main);
}
.inline-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  transform: rotate(45deg);
}
.provider-names strong {
  color: var(--text-main);
  font-weight: 500;
}

/* Commitment Cards */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.commitment-card {
  background: var(--surface-sec);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.commit-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
  margin-bottom: 16px;
}
.commitment-card h3 {
  font-size: 17px;
  color: var(--text-main);
  margin-bottom: 12px;
}
.commitment-card p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
  flex-grow: 1;
}

/* Responsible Gambling */
.rg-container {
  max-width: 760px;
  margin: 0 auto;
}
.rg-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.rg-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.rg-item h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 12px;
}

.support-box {
  background: var(--surface-sec);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--success);
  padding: 24px;
  margin-top: 24px;
}
.support-box p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 12px;
}
.support-box p:last-child {
  margin-bottom: 0;
}
.support-box strong {
  color: var(--text-main);
  font-weight: 500;
}

.rg-disclaimer {
  font-size: 13px;
  color: var(--text-sec);
  font-style: italic;
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  line-height: 1.7;
}

/* FAQ - Specifically surface background for this page */
.faq-wrapper {
  background-color: var(--surface);
  padding: 80px 5%;
}
@media (max-width: 767px) {
  .faq-wrapper {
    padding: 52px 5%;
  }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 18px;
  text-align: left;
}
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: var(--transition);
}
.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}
.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-sec);
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer-inner {
  padding-bottom: 24px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: -8px;
}

/* Footer */
footer {
  background: var(--bg-dark);
  padding: 60px 5% 24px;
  border-top: 1px solid var(--border);
} /* Set footer bg-dark to alternate from FAQ's surface */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--primary);
}
.footer-col p {
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-sec);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-sec);
}
.license-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--border);
  border: 1px solid var(--primary);
  color: var(--primary-light);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1023px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-left: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 24px 5%;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  }
  .navbar.menu-open .nav-menu {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 20px;
    margin-bottom: 24px;
  }
  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .nav-actions .btn {
    width: 100%;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 15px;
  }

  .timeline-wrapper {
    flex-direction: column;
  }
  .timeline-spacer {
    display: none;
  }
  .timeline-container {
    width: 100%;
    padding-left: 24px;
  }
  .timeline-node {
    left: -28px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-text-first .split-img {
    order: -1;
    max-height: 220px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }
  .core-value-card {
    min-height: auto;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }
  .commitment-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
