/* ============================================================
   Online5topstoixima GR — Main Stylesheet (Redesign v2)
   Design: Dark theme, matching best10greekbets.com style
   Palette: Dark bg, Yellow/Gold primary, Orange accent
   Fonts: Outfit (headings), Sora (body)
   ============================================================ */

/* === CSS Variables === */
:root {
  --primary: #eab308;
  --primary-hover: #facc15;
  --primary-500: #eab308;
  --primary-700: #a16207;
  --secondary-500: #6b7280;
  --accent-500: #f97316;
  --accent-700: #c2410c;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --bg-header: rgba(15, 23, 42, 0.9);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-body: #cbd5e1;
  --border-color: rgba(148, 163, 184, 0.15);
  --border-light: rgba(148, 163, 184, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xl: 16px;
  --transition: 0.3s ease;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-dark);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.bg-home {
  background-color: var(--bg-dark);
}

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

a:hover {
  color: var(--primary-hover);
}

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

ul, ol {
  list-style: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.o5gr-container,
.max-w-7xl {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.o5gr-section {
  padding: 60px 0;
}

.o5gr-section-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.o5gr-section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 700px;
  margin: -20px auto 40px;
  line-height: 1.6;
}

/* ============================================================
   ADVERTISER DISCLOSURE
   ============================================================ */
.advertiser-disclosure {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.7;
  position: relative;
  z-index: 51;
  padding: 0.75rem 1rem;
}

.advertiser-disclosure .disclosure-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-right: 2rem;
}

.advertiser-disclosure p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-body);
}

.advertiser-disclosure strong {
  color: var(--primary);
  font-weight: 600;
}

.advertiser-disclosure a.text-primary {
  color: var(--primary);
}

.advertiser-disclosure a.text-primary:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* No truncation on any screen */
.advertiser-disclosure #disclosureText {
  max-height: none !important;
  overflow: visible !important;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
}

.advertiser-disclosure .line-clamp-1 {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

@media (max-width: 767px) {
  .advertiser-disclosure {
    padding: 0.75rem;
    font-size: 0.8rem;
  }
  .advertiser-disclosure p {
    font-size: 0.78rem;
    line-height: 1.6;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-color);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  max-height: 56px;
  width: auto;
}

/* Desktop Navigation */
.site-nav {
  display: none;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.site-nav a {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.site-nav a.active {
  font-weight: 600;
}

/* Mobile Toggle (Checkbox Hack) */
#mobile-toggle {
  display: none;
}

.mobile-toggle-label {
  display: block;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.75rem;
  z-index: 60;
  position: absolute;
  right: 1.25rem;
  top: 1.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle-label {
    display: none;
  }
}

.mobile-toggle-label .icon-open {
  display: inline;
}

.mobile-toggle-label .icon-close {
  display: none;
}

#mobile-toggle:checked ~ .mobile-toggle-label .icon-open {
  display: none;
}

#mobile-toggle:checked ~ .mobile-toggle-label .icon-close {
  display: inline;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

#mobile-toggle:checked ~ .mobile-menu {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding: 2.5rem 0.75rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), var(--bg-dark));
}

.hero-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-badge span {
  color: var(--primary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-features span i,
.hero-features a i {
  margin-right: 0.5rem;
}

.hero-features .fa-check-circle {
  color: #22c55e;
}

/* ============================================================
   CASINO CARDS SECTION
   ============================================================ */
.casino-section {
  padding: 1.5rem 1rem;
}

.casino-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.casino-section-title h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.casino-section-title h3 i {
  color: var(--primary);
  margin-right: 0.75rem;
}

.casino-cards-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Single Casino Card */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  transition: all var(--transition);
}

@media (min-width: 768px) {
  .casino-card {
    padding: 1rem;
  }
}

.casino-card:hover {
  border-color: rgba(234, 179, 8, 0.2);
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.05);
}

.casino-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .casino-card-inner {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* Left Column */
.casino-card-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .casino-card-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 140px;
  }
}

.casino-rank {
  position: relative;
  left: -0.5rem;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  background: var(--accent-500);
  border-start-start-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .casino-rank {
    left: -1rem;
    top: -1rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

.casino-logo {
  width: 8rem;
  height: 5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
}

.rating-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(234, 179, 8, 0.15);
}

.rating-badge i {
  color: var(--primary);
}

.rating-badge span {
  font-weight: 700;
  color: #fff;
}

.casino-rating-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Right Column */
.casino-card-right {
  flex: 1;
}

.casino-card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .casino-card-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.casino-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.casino-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--primary), #d97706);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.casino-cta:hover {
  opacity: 0.9;
  color: #000;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.casino-cta i {
  margin-right: 0.5rem;
}

/* Bonus Box */
.casino-bonus {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.08), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(234, 179, 8, 0.25);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.casino-bonus-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.casino-bonus-inner i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.casino-bonus-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.casino-bonus-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Feature Grid (3 cols) */
.casino-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.casino-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 179, 8, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.casino-feature-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.casino-feature-value {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* Perks Grid */
.casino-perks {
  margin-bottom: 1rem;
}

.casino-perks ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .casino-perks ul {
    grid-template-columns: 1fr 1fr;
  }
}

.casino-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.casino-perks li i {
  color: #22c55e;
  margin-top: 0.25rem;
}

/* Brand Disclosure */
.brand-disclosure {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
}

/* ============================================================
   BRANDS GRID (o5gr-brands-grid)
   ============================================================ */
.o5gr-brands {
  padding: 2rem 0;
}

.o5gr-brands-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.o5gr-brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.o5gr-brand-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(234, 179, 8, 0.2);
}

.o5gr-brand-card-badge {
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.o5gr-brand-card-name {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.o5gr-brand-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.o5gr-brand-card-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.o5gr-brand-card-info {
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.o5gr-brand-card-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

.o5gr-brand-card-criteria {
  list-style: none;
  padding: 0;
  margin: 0;
}

.o5gr-brand-card-criteria li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  border-bottom: 1px solid var(--border-light);
}

.o5gr-brand-card-criteria li:last-child {
  border-bottom: none;
}

.o5gr-brand-card-criteria li i {
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.o5gr-brand-card .o5gr-btn--brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1.25rem 1.25rem;
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
}

.o5gr-brand-card .o5gr-btn--brand:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-1px);
}

.o5gr-brand-card .o5gr-btn--brand i {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.o5gr-brand-card .o5gr-btn--brand:hover i {
  transform: translateX(3px);
}

/* ============================================================
   EDITORIAL INFO CARDS — single column, full width, text-heavy
   ============================================================ */
.o5gr-cards-section {
  padding: 3rem 0;
}

/* Single column — always, all screen sizes */
.o5gr-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.o5gr-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .o5gr-card {
    padding: 2.5rem 2.25rem;
  }
}

.o5gr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent-500));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.o5gr-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(234, 179, 8, 0.15);
}

.o5gr-card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  background: rgba(234, 179, 8, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}

.o5gr-card-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.o5gr-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .o5gr-card-title {
    font-size: 1.5rem;
  }
}

.o5gr-card-subtitle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.o5gr-card-body {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.o5gr-card-body p {
  margin-bottom: 0.85rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}

.o5gr-card-criteria {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.o5gr-card-criteria li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
}

.o5gr-card-criteria li:last-child {
  border-bottom: none;
}

.o5gr-card-criteria li i {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.o5gr-card-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: rgba(234, 179, 8, 0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

.o5gr-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, var(--primary), #d97706);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.o5gr-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
  color: #000;
}

/* ============================================================
   INFO SECTION (after cards)
   ============================================================ */
.info-section {
  padding: 4rem 1rem;
  background: rgba(0, 0, 0, 0.2);
}

.info-section p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

#cookie-consent-banner.show {
  transform: translateY(0);
}

#cookie-preferences-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#cookie-preferences-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4b5563;
  transition: .4s;
  border-radius: 24px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-item {
  background: rgba(234, 179, 8, 0.05);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 3rem 1rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Regulatory Box */
.footer-regulatory-box {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
}

.footer-regulatory-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-regulatory-box p:last-child {
  margin-bottom: 0;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.footer-brand h4,
.footer-links h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links li a:hover {
  color: var(--primary);
}

/* Responsible Logos */
.footer-responsible {
  margin-bottom: 2rem;
}

.footer-responsible h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-logos a img {
  height: 2rem;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-logos a:hover img {
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-bottom strong {
  color: var(--primary);
}

.footer-bottom .copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ============================================================
   PAGE LAYOUT (inner pages)
   ============================================================ */
.o5gr-page {
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
}

.o5gr-page-header {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 3rem 1.25rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.o5gr-page-header h1 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.o5gr-page-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.o5gr-page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.o5gr-page-body h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-top: 2.5rem;
}

.o5gr-page-body h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-top: 1.5rem;
}

.o5gr-page-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.o5gr-page-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.o5gr-page-body ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.o5gr-contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.o5gr-form-group {
  margin-bottom: 1.25rem;
}

.o5gr-form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.o5gr-form-input,
.o5gr-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--transition);
  background: var(--bg-dark);
}

.o5gr-form-input:focus,
.o5gr-form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

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

.o5gr-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.o5gr-form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.o5gr-form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================================
   AGE GATE
   ============================================================ */
.o5gr-age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.o5gr-age-gate--hidden {
  display: none;
}

.o5gr-age-gate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.o5gr-age-gate-modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: o5gr-fadeIn 0.4s ease;
}

@keyframes o5gr-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.o5gr-age-gate-logo {
  margin: 0 auto 1rem;
  width: 120px;
  height: auto;
}

.o5gr-age-gate-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent-500));
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.o5gr-age-gate-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.o5gr-age-gate-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.o5gr-age-gate-support {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.o5gr-age-gate-support a {
  color: var(--primary);
}

.o5gr-age-gate-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.o5gr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  line-height: 1.4;
}

.o5gr-btn--primary {
  background: linear-gradient(135deg, var(--primary), #d97706);
  color: #000;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.o5gr-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
  color: #000;
}

.o5gr-btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.o5gr-btn--secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.o5gr-btn--exit {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
}

.o5gr-btn--exit:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.o5gr-btn--confirm {
  background: linear-gradient(135deg, var(--primary), #d97706);
  color: #000;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.o5gr-btn--confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
  color: #000;
}

.o5gr-btn--card {
  background: transparent;
  color: var(--primary);
  padding: 0;
  font-size: 0.9rem;
}

.o5gr-btn--card:hover {
  gap: 0.75rem;
  color: var(--primary-hover);
}

/* Cookie Buttons */
.o5gr-btn--cookie {
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.o5gr-btn--cookie-accept {
  background: linear-gradient(135deg, var(--primary), #d97706);
  color: #000;
}

.o5gr-btn--cookie-accept:hover {
  transform: translateY(-1px);
  color: #000;
}

.o5gr-btn--cookie-settings {
  background: var(--accent-500);
  color: #fff;
}

.o5gr-btn--cookie-settings:hover {
  transform: translateY(-1px);
  color: #fff;
}

.o5gr-btn--cookie-reject {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.o5gr-btn--cookie-reject:hover {
  border-color: var(--text-muted);
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.o5gr-trust {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.o5gr-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .o5gr-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .o5gr-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.o5gr-trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.o5gr-trust-item:hover {
  background: rgba(234, 179, 8, 0.04);
  transform: translateY(-2px);
}

.o5gr-trust-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}

.o5gr-trust-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.o5gr-trust-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   TRANSITION SECTION
   ============================================================ */
.o5gr-transition {
  padding: 3rem 0;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  text-align: center;
}

.o5gr-transition h2 {
  color: var(--text-primary);
}

.o5gr-transition p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 1rem;
}

/* ============================================================
   METHODOLOGY SECTION
   ============================================================ */
.o5gr-methodology {
  padding: 3rem 0;
}

.o5gr-methodology p {
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 1rem;
}

/* ============================================================
   CRITERIA SECTION
   ============================================================ */
.o5gr-criteria {
  padding: 3rem 0;
}

.o5gr-criteria-list {
  max-width: 800px;
  margin: 0 auto;
}

.o5gr-criteria-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.o5gr-criteria-item:last-child {
  border-bottom: none;
}

.o5gr-criteria-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.o5gr-criteria-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.o5gr-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .o5gr-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .o5gr-process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.o5gr-process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}

.o5gr-process-step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.o5gr-step-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.o5gr-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.o5gr-step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.o5gr-faq {
  padding: 3rem 0;
}

.o5gr-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.o5gr-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.o5gr-faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  gap: 0.75rem;
}

.o5gr-faq-question:hover {
  background: rgba(234, 179, 8, 0.04);
}

.o5gr-faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  color: var(--primary);
  font-size: 0.8rem;
}

.o5gr-faq-item--open .o5gr-faq-arrow {
  transform: rotate(180deg);
}

.o5gr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}

.o5gr-faq-item--open .o5gr-faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1rem;
}

.o5gr-faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   REDIRECT PAGE
   ============================================================ */
.o5gr-redirect {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg-dark);
  text-align: center;
  padding: 20px;
}

.o5gr-redirect-content {
  max-width: 400px;
}

.o5gr-redirect-logo {
  margin: 0 auto 24px;
  width: 140px;
  opacity: 0.9;
}

.o5gr-redirect-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: o5gr-spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes o5gr-spin {
  to { transform: rotate(360deg); }
}

.o5gr-redirect-text {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.o5gr-redirect-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.o5gr-thankyou {
  text-align: center;
  padding: 100px 20px;
}

.o5gr-thankyou-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary);
}

/* ============================================================
   DISCLOSURE MODAL
   ============================================================ */
#disclosureModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  justify-content: center;
  align-items: center;
}

#disclosureModal.show {
  display: flex;
}

.disclosure-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  padding: 1.5rem;
  position: relative;
  margin: 1rem;
}

.disclosure-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--text-muted);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.disclosure-modal-content h2 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  text-align: center;
}

.disclosure-modal-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gray-400 { color: var(--text-muted); }
.text-gray-300 { color: var(--text-secondary); }
.text-white { color: var(--text-primary); }
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .hero-title {
    font-size: 1.75rem;
  }

  .casino-card-header {
    flex-direction: column;
  }

  .casino-features {
    grid-template-columns: 1fr;
  }

  .casino-perks ul {
    grid-template-columns: 1fr;
  }

  .o5gr-section {
    padding: 2rem 0;
  }

  .site-header-inner {
    padding: 0.5rem 1rem;
  }

  .site-logo img {
    max-height: 42px;
  }

  .o5gr-page-header {
    padding: 2rem 1rem 1.5rem;
  }

  .o5gr-page-header h1 {
    font-size: 1.5rem;
  }

  .o5gr-age-gate-modal {
    padding: 2rem 1.5rem;
  }

  .casino-rank {
    left: -0.5rem;
    top: 0;
  }
}
