:root {
  --primary: #c9a84c;
  --primary-hover: #e0bf5f;
  --secondary: #7b2fbe;
  --bg-base: #0d0a1a;
  --bg-surface: #16112b;
  --bg-elevated: #1e1740;
  --text-primary: #f5f0ff;
  --text-secondary: #a99bc8;
  --success: #34d399;
  --border: #2d2552;
  --warning-amber: #f59e0b;
  --danger-red: #ef4444;

  --font-display: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-ui: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 48px 0;
  }
}

.catalog-divider {
  border-bottom: 1px solid var(--border);
}

/* Headings & Accents */
.h2-left {
  font-size: 36px;
  margin-bottom: 40px;
  position: relative;
  color: #ffffff;
}
.h2-left::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 12px;
}

.section-subheading-editorial {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

/* Editorial Body Plain Blocks */
.text-block-plain {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-align: justify;
}
.text-block-plain strong {
  color: var(--text-primary);
}

/* Navbar Layout */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition:
    background-color 0.3s ease,
    border-bottom 0.3s ease;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background-color: rgba(22, 17, 43, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-direction: row;
}
.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.logo span {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}
.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-login {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
}
.nav-login:hover {
  color: var(--primary);
}

.btn-nav-register {
  background: var(--gradient-gold);
  color: #ffffff;
  border-radius: 100px;
  padding: 0 20px;
  height: 40px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-nav-register:hover {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile Slide Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-surface);
  border-left: 1px solid var(--border);
  padding: 40px 30px;
  transition: right 0.3s ease-in-out;
  z-index: 101;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.mobile-menu .nav-link {
  display: block;
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .nav-link.active::after {
  display: none;
}
.mobile-menu .nav-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  gap: 12px;
}
.mobile-menu .btn-nav-register {
  width: 100%;
  min-width: unset;
  height: 48px;
  font-size: 16px;
}
.mobile-menu .btn-type-b {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 100px;
  padding: 0 24px;
  height: 48px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: var(--bg-base);
}
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 10, 26, 0.3) 0%,
    rgba(13, 10, 26, 0.95) 90%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 44px;
  margin-bottom: 24px;
  color: #ffffff;
}
.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 30px;
  }
}

/* 2x2 Values Card Grid Layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 40px;
}
.value-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}
.value-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 12px 12px 0 0;
}
.bar-transparency {
  background-color: var(--primary);
}
.bar-security {
  background-color: var(--secondary);
}
.bar-fairness {
  background-color: var(--success);
}
.bar-responsibility {
  background-color: var(--warning-amber);
}

.value-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.value-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Gold Checkmark Framework List Component Style */
.checklist-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.checklist-icon {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checklist-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  fill: none;
  stroke: currentColor;
}

/* Security Flat Vertical Row Elements Structure */
.security-list {
  display: flex;
  flex-direction: column;
  margin: 32px 0;
}
.security-item-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.security-item-row:first-child {
  padding-top: 0;
}
.security-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.security-row-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.security-row-icon {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.security-row-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}
.security-row-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

/* High-importance custom callout box structure */
.callout-box-importance {
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.callout-age-limit {
  border-left: 3px solid var(--danger-red);
}

/* Self-Assessment Specialized Questions Container */
.assessment-container-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.assessment-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.assessment-question-item {
  font-size: 15px;
  font-style: italic;
  color: var(--text-primary);
  position: relative;
  padding-left: 24px;
}
.assessment-question-item span {
  position: absolute;
  left: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
}

/* 3-Column Tool Cards Grid Layout */
.tools-layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.tool-card-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.tool-card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}
.tool-card-icon-area {
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.tool-card-icon-area svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}
.tool-card-name-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.tool-card-desc-paragraph {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Support Professional Helpline resources container */
.helpline-resources-block {
  background: var(--bg-elevated);
  border-left: 3px solid var(--success);
  border-radius: 0 12px 12px 0;
  padding: 20px;
  margin-bottom: 32px;
}
.helpline-vertical-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.helpline-row-item {
  font-size: 15px;
}
.helpline-org-name {
  font-weight: 700;
  color: var(--text-primary);
}
.helpline-number-digit {
  color: var(--primary);
  margin-left: 8px;
}

/* Contact communication line items layout rows */
.contact-inline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-inline-item:first-child {
  padding-top: 0;
}
.contact-inline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-inline-icon {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-inline-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}
.contact-inline-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  white-space: nowrap;
}
.contact-inline-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Custom Structured Table parameters */
.table-responsive-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 32px 0;
}
.structured-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.structured-data-table th {
  background: var(--bg-elevated);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.structured-data-table td {
  background: var(--bg-surface);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.structured-data-table tr:last-child td {
  border-bottom: none;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-left-color 0.3s ease;
}
.faq-item.active {
  border-left-color: var(--primary);
}
.faq-question {
  padding: 20px;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-icon {
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  font-size: 15px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
  opacity: 1;
}

.faq-section {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .faq-section {
    padding-bottom: 64px;
  }
}

/* Footer Unified Style System Fix */
.footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0 0;
  font-family: var(--font-body);
}

.footer .nav-container {
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary);
}

/* Isolated Full-Width Bottom Bar Component */
.footer-bottom {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 16px;
}
.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-copyright {
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-legal-notices {
  display: flex;
  align-items: center;
  gap: 24px;
}
.responsible-gambling-statement {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.badge-18-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--text-secondary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-legal-notices {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .values-grid,
  .tools-layout-grid {
    grid-template-columns: 1fr;
  }
  .contact-inline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
