:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #181818;
  --bg-elevated: #232323;
  --accent: #1ed760;
  --accent-subtle: rgba(30, 215, 96, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #6a6a6a;
  --border: #282828;
  --border-accent: rgba(30, 215, 96, 0.3);
  --error: #e85d5d;
  --warning: #f59b23;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 0 30px rgba(30, 215, 96, 0.18);
  --font: 'Inter', sans-serif;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #22f068;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--accent);
  color: #000000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: #22f068;
  color: #000000;
  border-color: #22f068;
  box-shadow: var(--shadow-accent);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-accent {
  background-color: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

.badge-dark {
  background-color: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.divider {
  height: 1px;
  background-color: var(--border);
  margin: 48px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 18px;
}

.logo:hover {
  color: var(--text-primary);
}

.logo-mark {
  width: 32px;
  height: 32px;
  background-color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #000000;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background-color: var(--bg-elevated);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background-color: var(--bg-secondary);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent);
}

.mobile-nav .btn {
  margin-top: 16px;
  width: 100%;
}

.page-content {
  padding-top: 64px;
}

.disclaimer-strip {
  background-color: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.disclaimer-strip strong {
  color: var(--text-secondary);
}

.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-support {
  margin-bottom: 48px;
  padding: 24px;
  background-color: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent);
}

.footer-support h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.support-item {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.support-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-size: 13px;
}

.support-item a {
  color: var(--accent);
  font-size: 11px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.modal .logo-mark {
  margin: 0 auto 20px;
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.modal h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-disclaimer {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: left;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-actions .btn {
  width: 100%;
}

.modal-deny {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  text-align: center;
  transition: color var(--transition);
  background: none;
  border: none;
  font-family: var(--font);
}

.modal-deny:hover {
  color: var(--error);
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 300;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.hero-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30, 215, 96, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-preview-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.game-preview-img {
  height: 200px;
  background: linear-gradient(135deg, #1a2a1a 0%, #0d1a0d 50%, #162416 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}

.game-preview-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(30, 215, 96, 0.15) 0%, transparent 70%);
}

.game-preview-body {
  padding: 20px;
}

.game-preview-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.game-preview-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mini-stat {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}

.mini-stat span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.how-it-works {
  background-color: var(--bg-secondary);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
  position: relative;
}

.step-item {
  position: relative;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-accent), transparent);
}

.step-item:last-child::after {
  display: none;
}

.step-num {
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: #000000;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.compliance-note {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  background-color: var(--accent-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 32px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.game-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.game-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.game-img.g1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.game-img.g2 {
  background: linear-gradient(135deg, #2e1a1a 0%, #3e1616 100%);
}

.game-img.g3 {
  background: linear-gradient(135deg, #1a2e1a 0%, #162e16 100%);
}

.game-img.g4 {
  background: linear-gradient(135deg, #2e2a1a 0%, #3e3516 100%);
}

.game-img.g5 {
  background: linear-gradient(135deg, #1a1e2e 0%, #16193e 100%);
}

.game-img.g6 {
  background: linear-gradient(135deg, #1e1a2e 0%, #18163e 100%);
}

.game-card-body {
  padding: 20px;
}

.game-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.game-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.game-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.transparency-box {
  background-color: var(--accent-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
}

.transparency-box .icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.transparency-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.transparency-box p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.info-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.cta-section {
  background-color: var(--bg-secondary);
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 215, 96, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
}

.cta-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 24px auto;
  max-width: 400px;
  text-align: left;
  position: relative;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.cta-checklist li::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

.cta-box small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
}

.page-hero {
  background-color: var(--bg-secondary);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.6;
}

.prose h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  margin: 40px 0 16px;
  color: var(--text-primary);
  line-height: 1.2;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text-primary);
}

.prose p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.prose ul {
  margin: 12px 0 20px 0;
  padding-left: 20px;
}

.prose ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

.prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

.two-col-prose {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.sidebar-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
  margin-bottom: 20px;
}

.sidebar-card h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-card ul a {
  display: block;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}

.sidebar-card ul a:hover {
  color: var(--accent);
  background-color: var(--accent-subtle);
}

.sidebar-card ul a.current {
  color: var(--accent);
  background-color: var(--accent-subtle);
}

.sidebar-card .helpline-number {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin: 8px 0;
}

.sidebar-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-box {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 20px 0;
}

.info-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-box p, .info-box ul li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-box ul {
  padding-left: 16px;
}

.info-box ul li {
  list-style: disc;
  margin-bottom: 4px;
}

.info-box.accent {
  background-color: var(--accent-subtle);
  border-color: var(--border-accent);
}

.info-box.accent h4 {
  color: var(--accent);
}

.info-box.warning {
  background-color: rgba(245, 155, 35, 0.08);
  border-color: rgba(245, 155, 35, 0.3);
}

.info-box.warning h4 {
  color: var(--warning);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form-input.error {
  border-color: var(--error);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236a6a6a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}

select.form-input option {
  background-color: var(--bg-elevated);
  color: var(--text-primary);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-item.error-check span {
  color: var(--error);
}

.checkbox-item span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.contact-info-card.accent {
  border-color: var(--border-accent);
  background-color: var(--accent-subtle);
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.contact-detail strong {
  color: var(--text-primary);
  min-width: 60px;
  flex-shrink: 0;
}

.games-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #000000;
}

.iframe-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
}

.iframe-header {
  background-color: var(--bg-elevated);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.iframe-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.iframe-header .badges {
  display: flex;
  gap: 6px;
}

.game-disclaimer-banner {
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.top-disclaimer-bar {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  background-color: var(--accent-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}

.top-disclaimer-bar .d-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.top-disclaimer-bar p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.support-block {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
}

.support-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.support-block > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.support-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.support-org {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.support-org strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.support-org p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.support-org a {
  color: var(--accent);
  font-size: 12px;
}

.fullpage-disclaimer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}

.fullpage-disclaimer p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

.fullpage-disclaimer strong {
  color: var(--text-secondary);
}

.section-divider {
  width: 48px;
  height: 4px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.can-cant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.cant-box {
  background-color: rgba(232, 93, 93, 0.06);
  border: 1px solid rgba(232, 93, 93, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.cant-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--error);
  margin-bottom: 16px;
}

.can-box {
  background-color: var(--accent-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.can-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.cant-box ul,
.can-box ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cant-box ul li,
.can-box ul li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.cant-box ul li::before {
  content: 'x';
  width: 16px;
  height: 16px;
  background-color: var(--error);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  text-align: center;
  line-height: 16px;
}

.can-box ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

.legal-toc {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.legal-toc h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc ol li {
  font-size: 13px;
  color: var(--text-muted);
}

.legal-toc ol li a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color var(--transition);
}

.legal-toc ol li a:hover {
  color: var(--accent);
}

.last-updated {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 8px 12px;
  background-color: var(--bg-elevated);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.warning-section {
  background-color: rgba(232, 93, 93, 0.06);
  border: 1px solid rgba(232, 93, 93, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.warning-section h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--error);
  margin-bottom: 12px;
}

.warning-section ul {
  padding-left: 18px;
}

.warning-section ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 6px;
  list-style: disc;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.faq-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .two-col-prose {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .age-chip,
  .nav-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-visual {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }

  .steps-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .step-item::after {
    display: none;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .info-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .can-cant-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-checklist {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-mini-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 28px 20px;
  }

  .support-items-grid {
    grid-template-columns: 1fr;
  }
}
