/* Fonts and root variables */
:root {
  --bg-start: #001a12;
  --bg-end: #062a1c;
  --bg-elev: #0c3a28;
  --page-bg: #062a1c;
  --header-bg: #173F3B;
  --footer-bg-start: #032A2A;
  --footer-bg-end: #000000;
  --header-h: 88px;
  --text: #eaf7f1;
  --muted: #b8d1c6;
  --neon: #9cff00;
  --yellow: #ffff00;
  --yellow-dark: #d4d400;
  --card: #0a2e20;
  --border: #134733;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--page-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 16px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.brand img { display: block; height: 72px; }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12,58,40,.8), rgba(12,58,40,.4));
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
  transition: opacity .2s ease;
}

.btn { 
  display: inline-flex; align-items: center; justify-content: center; 
  gap: 8px; text-decoration: none; font-weight: 800; letter-spacing: .2px;
  padding: 12px 18px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; color: #08150f;
  position: relative;
  z-index: 2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-register { background: var(--yellow); color: #000; box-shadow: var(--shadow); }
.btn-register:hover { background: var(--yellow-dark); }
.btn-login { background: linear-gradient(180deg, #2b6d50, #1d4d38); color: #e9fff2; border-color: #2e7a58; }
.btn-login:hover { background: linear-gradient(180deg, #338a62, #236047); }
.btn-outline { background: transparent; color: var(--neon); border-color: #2e7a58; }
.btn-outline:hover { background: rgba(156,255,0,0.08); }
.btn-cta { 
  background: var(--yellow); 
  color: #000; 
  font-size: 18px; 
  padding: 14px 28px; 
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
  pointer-events: none;
}
.btn-cta:hover::before {
  left: 100%;
}
.btn-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}
.btn-cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}
.btn-secondary { background: rgba(156,255,0,0.15); color: var(--neon); border: 1px solid #2e7a58; }
.btn-secondary:hover { background: rgba(156,255,0,0.25); }
.btn-small { padding: 8px 14px; font-size: 14px; }
.btn.wide { width: 100%; }

/* Layout */
.layout { 
  max-width: 1600px; margin: 0 auto; padding: 24px 16px; position: relative;
  display: grid; grid-template-columns: 1fr 280px; gap: 24px;
  flex: 1;
}

.main-content { min-height: 60vh; }

/* Sidebar */
.sidebar { 
  position: sticky; top: 84px; height: calc(100vh - 100px);
  border-left: 1px solid var(--border);
  background: linear-gradient(180deg, #0c3a28, #0a2e20);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
  /* Hide scrollbar for all browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}
.sidebar::-webkit-scrollbar { 
  display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}
.sidebar-inner { height: 100%; display: flex; flex-direction: column; padding: 16px; gap: 16px; }
.sidebar-brand { display: flex; justify-content: center; align-items: center; }
.sidebar-brand img { display: block; height: 48px; }
.sidebar-actions { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 8px; }
.sidebar-nav { 
  flex: 1; 
  overflow: auto; 
  padding-right: 6px;
  /* Hide scrollbar for all browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}
.sidebar-nav::-webkit-scrollbar { 
  display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}
.sidebar-footer { font-size: 12px; color: var(--muted); opacity: .9; }
.nav-section { margin-bottom: 16px; }
.nav-title { font-weight: 900; color: var(--neon); margin: 8px 0 10px; text-transform: uppercase; font-size: 16px; letter-spacing: .8px; display: flex; align-items: center; gap: 8px; }
.nav-section ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.nav-section a { 
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; text-decoration: none; color: var(--text);
  background: linear-gradient(180deg, rgba(8,27,20,.45), rgba(8,27,20,.25)); border: 1px solid transparent; font-weight: 700; font-size: 16px;
}
.nav-section a:hover, .nav-section a:focus { border-color: #275a42; background: rgba(8, 27, 20, 0.6); color: var(--neon); }
.nav-section a.is-active { color: var(--neon); background: rgba(156,255,0,0.1); border-color: #2e7a58; }
.nav-ic { width: 24px; text-align: center; }

/* Hero */
.hero { position: relative; border-radius: 20px; overflow: hidden; background: #07271b; border: 1px solid var(--border); box-shadow: var(--shadow); }
.hero-media {
  position: absolute; inset: 0;
  background: url('assets/medusa-main.jpg') center/cover no-repeat;
  filter: saturate(0.8) brightness(0.6);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 20% 40%, rgba(156,255,0,0.25), transparent 60%),
              radial-gradient(70% 70% at 80% 60%, rgba(0,0,0,0.4), transparent 70%);
}
.hero-content { position: relative; padding: 40px 48px; display: grid; gap: 16px; max-width: 860px; }
.eyebrow { color: var(--neon); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 800; font-size: 10px; }
.hero p { margin: 0; font-size: clamp(24px, 3vw, 48px); line-height: 1.05; font-weight: 900; }
.hero p .accent { color: var(--neon); text-shadow: 0 0 24px rgba(156,255,0,0.4); }
.hero p .plus { color: var(--yellow); }
.subcopy { color: #e8fff1; opacity: .95; font-weight: 600; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.link-alt { 
  color: var(--neon); 
  text-decoration: none; 
  font-weight: 700; 
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.link-alt:hover { 
  background: rgba(156,255,0,0.1);
  transform: translateY(-1px);
  text-shadow: 0 0 8px rgba(156,255,0,0.5);
}
.link-alt:active {
  transform: translateY(0);
}

/* Promo banner */
.promo-banner { margin-top: 24px; }
.promo-card { display: grid; grid-template-columns: 2fr 3fr; gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: linear-gradient(180deg, #0b3324, #0a2b1f); box-shadow: var(--shadow); }
.promo-media { min-height: 160px; background: url('assets/medusa.jpg') center/cover no-repeat; filter: brightness(.7); }
.promo-body { padding: 20px; display: grid; align-content: center; gap: 8px; }
.promo-body h2 { margin: 0; color: var(--neon); }
.promo-body p { margin: 0 0 6px; color: var(--muted); }

/* Games grid */
.games-grid { margin-top: 32px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 16px; box-shadow: var(--shadow); overflow: hidden; }
.section-title { margin: 0 0 16px; font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.slot-grid--wide { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.slot-tile { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: #081b14; border: 1px solid var(--border); }
.slot-tile a { display: block; text-decoration: none; color: inherit; }
.slot-tile img { width: 100%; height: 260px; object-fit: cover; display: block; }
.slot-tile:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45); }
.badge-new { position: absolute; top: 10px; right: 10px; background: var(--neon); color: #0b2017; font-weight: 900; font-size: 12px; padding: 6px 10px; border-radius: 999px; }
.badge-new--circle { border-radius: 100px; padding: 8px 12px; box-shadow: 0 0 0 3px rgba(0,0,0,.25), 0 0 0 6px rgba(156,255,0,.2); }

/* Footer */
.site-footer { margin-top: 36px; background: linear-gradient(180deg, var(--footer-bg-start) 0%, var(--footer-bg-end) 100%); border-top: 1px solid var(--border); color: var(--neon); }
.footer-top { max-width: 1400px; margin: 0 auto; padding: 28px 16px; display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: start; margin-top: auto; }
.footer-left { display: flex; justify-content: center; }
.footer-left img { height: 140px; display: block; margin: 0 auto; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); gap: 8px 16px; }
.footer-nav a { color: var(--neon); text-decoration: none; font-weight: 800; font-size: 15px; display: block; padding: 8px 10px; border-radius: 10px; line-height: 1.25; }
.footer-nav a::before { content: "•"; color: #a8ff3a; margin-right: 8px; }
.footer-nav a:hover { background: rgba(156,255,0,0.08); }
.footer-payments { max-width: 1400px; margin: 0 auto; padding: 8px 16px 16px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; opacity: .95; }
.footer-payments img { height: 32px; max-width: 100%; }
.footer-bottom { text-align: center; color: var(--muted); padding: 10px 16px 20px; }

/* Support pill */
.sidebar-footer { display: grid; gap: 10px; margin-top: auto; }
.support-pill { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 999px; background: linear-gradient(180deg, #e9fff2, #bfe9d5); color: #0b2017; text-decoration: none; font-weight: 900; justify-content: center; }
.support-pill:hover { filter: brightness(0.95); }

/* Desktop sidebar fixed to right: the grid already places it. */

/* Large Desktop - Reduce hero size for better image quality */
@media (min-width: 1200px) {
  .hero-content { padding: 32px 40px; gap: 14px; }
  .hero p { font-size: clamp(20px, 2.5vw, 40px); }
}

/* Mobile / Tablet */
@media (max-width: 1100px) {
  .layout { grid-template-columns: 1fr 260px; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .slot-grid--wide { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  /* CRITICAL: Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .layout { 
    grid-template-columns: 1fr; 
    padding: 8px 6px;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .main-content {
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .games-grid {
    padding: 16px 8px;
    margin: 0 0 24px 0;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .games-grid h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .games-grid h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .games-grid h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .games-grid p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .games-grid ul {
    margin-bottom: 12px;
    padding-left: 16px;
  }
  
  .games-grid li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .games-grid strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .pros-cons {
    margin: 0 0 24px 0;
  }
  
  .faq {
    margin: 0 0 24px 0;
  }
  
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin: 0 0 16px 0;
  }
  
  .table {
    width: 100%;
    max-width: 100%;
    font-size: 12px;
    table-layout: fixed;
    word-wrap: break-word;
  }
  
  .table th,
  .table td {
    padding: 6px 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    vertical-align: top;
  }
  
  .table th {
    font-size: 11px;
    font-weight: bold;
  }
  
  .table td {
    font-size: 11px;
  }
  
  .header-inner { gap: 8px; align-items: center; }
  .brand img { height: 72px; }
  .site-header .header-right { display: flex; align-items: center; gap: 8px; }
  .site-header .hamburger { align-self: center; width: 40px; height: 40px; margin-left: 6px; }
  .sidebar {
    position: fixed; right: 0; top: var(--header-h); height: calc(100vh - var(--header-h)); width: min(80vw, 320px);
    transform: translateX(100%);
    transition: transform .25s ease;
    border-radius: 0; border-left: 1px solid var(--border);
    background: linear-gradient(180deg, #0c3a28, #0a2e20);
    z-index: 40;
    /* Prevent layout shifts */
    contain: layout style paint;
    will-change: transform;
  }
  .hamburger { display: inline-flex; }
  #sidebarToggle:checked ~ .site-header .header-inner .hamburger span { opacity: .6; }
  #sidebarToggle:checked ~ .layout .sidebar { transform: translateX(0%); }
  /* Prevent scroll jump when sidebar opens */
  body { 
    scroll-behavior: auto !important; 
    overflow-x: hidden; /* Prevent horizontal scroll during sidebar animation */
  }
  html { scroll-behavior: auto !important; }
  /* Ensure sidebar doesn't affect main content layout */
  .layout { will-change: auto; }
  .main-content { will-change: auto; }
  /* Prevent body from shifting when sidebar opens */
  body.sidebar-open { overflow: hidden; }
  .sidebar-inner { padding-top: 20px; }
  .hero-content { padding: 40px 24px; }
  .promo-card { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .slot-grid--wide { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-nav ul { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
}

@media (max-width: 560px) {
  /* Additional mobile fixes for small screens */
  .layout {
    padding: 6px 4px;
  }
  
  .games-grid {
    padding: 12px 6px;
    margin: 0 0 20px 0;
  }
  
  .games-grid h1 {
    font-size: 20px;
    line-height: 1.1;
  }
  
  .games-grid h2 {
    font-size: 18px;
    line-height: 1.2;
  }
  
  .games-grid h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .games-grid p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .games-grid li {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .pros-cons {
    margin: 0 0 20px 0;
  }
  
  .faq {
    margin: 0 0 20px 0;
  }
  
  .table {
    font-size: 10px;
    table-layout: fixed;
  }
  
  .table th,
  .table td {
    padding: 4px 2px;
    font-size: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .table th {
    font-size: 9px;
  }
  
  .hero p { font-size: 24px; }
  .hero-ctas { justify-content: center; }
  .games-grid h3 { text-align: center; }
  .slot-grid { grid-template-columns: 1fr; }
  .slot-grid--wide { grid-template-columns: 2fr 2fr; grid-auto-flow: row; }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .layout {
    padding: 4px 2px;
  }
  
  .games-grid {
    padding: 10px 4px;
    margin: 0 0 16px 0;
  }
  
  .games-grid h1 {
    font-size: 18px;
  }
  
  .games-grid h2 {
    font-size: 16px;
  }
  
  .games-grid h3 {
    font-size: 14px;
  }
  
  .games-grid p {
    font-size: 12px;
  }
  
  .games-grid li {
    font-size: 12px;
  }
  
  .pros-cons {
    margin: 0 0 16px 0;
  }
  
  .faq {
    margin: 0 0 16px 0;
  }
  
  .table {
    font-size: 9px;
    table-layout: fixed;
  }
  
  .table th,
  .table td {
    padding: 3px 1px;
    font-size: 9px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .table th {
    font-size: 8px;
  }
}

/* Jackpot panel */
.jackpot-hero { position: relative; border-radius: 20px; overflow: hidden; margin: 28px 0 0; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--card); width: 100%; }
.jackpot-inner { position: relative; display: grid; gap: 16px; padding: 16px; }
.jackpots-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.jackpots-view { color: #dff5ea; text-decoration: none; font-weight: 800; }
.jackpots-view:hover { text-decoration: underline; color: var(--neon); }
.jackpots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; }
.jackpot-cell { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid #1d563f; background: #0b241a; border-radius: 16px; }
.cell-left { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.cell-ic { width: 24px; text-align: center; }
.cell-name { font-weight: 800; color: #eaf7f1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cell-amt { color: #ffd24a; font-weight: 900; }

/* Future Content Section */
.future-content-hero { position: relative; border-radius: 20px; overflow: hidden; margin: 28px 0 0; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--card); width: 100%; }
.future-content-inner { position: relative; display: grid; gap: 16px; padding: 16px; }
.future-content-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* Footer Features Block */
.footer-features { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 16px;
}
.footer-features-separator { 
  height: 2px; 
  background: var(--neon); 
  margin: 24px 0 32px;
}
.footer-features-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 32px; 
  margin-bottom: 24px;
}
.footer-feature-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 12px; 
  text-align: center;
}
.footer-feature-item img { 
  width: 32px; 
  height: 32px; 
  object-fit: contain;
  filter: brightness(0) invert(1); /* Make icons white */
}
.footer-feature-text { 
  display: flex; 
  flex-direction: column; 
  gap: 2px;
}
.footer-feature-line-1, .footer-feature-line-2 { 
  color: #ffffff; 
  font-weight: 800; 
  font-size: 14px; 
  letter-spacing: 0.5px;
}
.site-name { 
  color: var(--neon); 
  font-weight: 800;
}

@media (max-width: 1100px) {
  .jackpots-grid { grid-template-columns: 1fr; }
  .footer-features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 560px) {
  .footer-nav ul { grid-template-columns: repeat(3, minmax(90px, 1fr)); justify-items: center; }
  .footer-nav a { font-size: 14px; padding: 6px 8px; }
  .footer-features-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .footer-feature-item img { width: 20px; height: 20px; }
  .footer-feature-text { gap: 1px; }
  .footer-feature-line-1, .footer-feature-line-2 { font-size: 10px; }
}

/* Table styles */
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table th,
.table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  background: linear-gradient(180deg, rgba(156,255,0,0.1), rgba(156,255,0,0.05));
  color: var(--neon);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table td {
  color: var(--text);
  font-weight: 600;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover td {
  background: rgba(156,255,0,0.05);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Content section styles */
.games-grid h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--neon);
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.games-grid h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--neon);
  margin: 24px 0 16px 0;
  line-height: 1.2;
}

.games-grid h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--neon);
  margin: 20px 0 12px 0;
  line-height: 1.3;
}

.games-grid p {
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.games-grid ul {
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 16px 0;
  padding-left: 20px;
}

.games-grid li {
  margin-bottom: 8px;
}

.games-grid strong {
  color: var(--neon);
  font-weight: 800;
}

/* Pros & Cons Section Styles */
.pros-cons {
  margin: 32px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.pros-cons .container {
  max-width: 100%;
}

.pros-cons h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--neon);
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pros-column,
.cons-column {
  background: #081b14;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.pros-cons h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0;
}

.pros-list li:last-child,
.cons-list li:last-child {
  margin-bottom: 0;
}

.pros-icon,
.cons-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.pros-icon {
  background: var(--neon);
  color: #0b2017;
}

.cons-icon {
  background: #ff4444;
  color: #ffffff;
}

.pros-text,
.cons-text {
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

/* Mobile responsiveness for Pros & Cons */
@media (max-width: 768px) {
  .pros-cons {
    margin: 24px 0;
    padding: 16px;
    border-radius: 16px;
  }
  
  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pros-column,
  .cons-column {
    padding: 16px;
    border-radius: 12px;
  }
  
  .pros-list li,
  .cons-list li {
    margin-bottom: 12px;
    gap: 10px;
  }
  
  .pros-icon,
  .cons-icon {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
  
  .pros-text,
  .cons-text {
    font-size: 15px;
  }
}

/* FAQ Section Styles */
.faq {
  margin: 32px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.faq .container {
  max-width: 100%;
}

.faq h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--neon);
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: #081b14;
  border: 1px solid var(--border);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(8,27,20,.8), rgba(8,27,20,.4));
  border: none;
  color: var(--text);
  font-weight: 800;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(180deg, rgba(8,27,20,.9), rgba(8,27,20,.6));
  color: var(--neon);
}

.faq-question:focus {
  outline: 2px solid var(--neon);
  outline-offset: -2px;
}

.faq-icon {
  color: var(--neon);
  font-size: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(8,27,20,0.3);
}

.faq-answer.open {
  max-height: 200px;
  padding: 20px;
}

.faq-answer p {
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.faq-answer strong {
  color: var(--neon);
  font-weight: 800;
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
  .faq {
    margin: 24px 0;
    padding: 16px;
    border-radius: 16px;
  }
  
  .faq-question {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .faq-answer.open {
    padding: 16px;
  }
}

/* Page Contents Section Styles */
.page-contents {
  margin: 32px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-contents .container {
  max-width: 100%;
  padding: 0;
}

.contents-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.contents-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contents-menu-icon {
  color: var(--neon);
  font-size: 16px;
  font-weight: 400;
}

.page-contents h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.contents-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
  transition: transform 0.3s ease;
}

.contents-toggle:hover {
  color: var(--neon);
}

.contents-toggle-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

#contentsToggle:checked ~ .contents-list {
  max-height: 1000px;
  opacity: 1;
}

#contentsToggle:not(:checked) ~ .contents-list {
  max-height: 0;
  opacity: 0;
}

#contentsToggle:not(:checked) ~ .contents-separator {
  display: none;
}

#contentsToggle:not(:checked) ~ .contents-header .contents-toggle-icon {
  transform: rotate(180deg);
}

.contents-separator {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--card);
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.contents-list.collapsed {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.contents-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(19, 71, 51, 0.3);
}

.contents-list li:last-child {
  border-bottom: none;
}

.contents-list a {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.3s ease;
  background: var(--card);
}

.contents-list a:hover {
  color: var(--neon);
  background: rgba(156,255,0,0.05);
}

.contents-list a:focus {
  outline: 2px solid var(--neon);
  outline-offset: -2px;
}

/* Remove bullet points */
.contents-list a::before {
  display: none;
}

/* Mobile responsiveness for Page Contents */
@media (max-width: 768px) {
  .page-contents {
    margin: 24px 0;
    border-radius: 16px;
  }
  
  .contents-header {
    padding: 12px 16px;
  }
  
  .contents-list a {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Focus styles */
:focus-visible { outline: 2px solid var(--neon); outline-offset: 2px; }


