/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0d1220;
  color: #e8e8e8;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
a { color: #f5c500; text-decoration: none; transition: all 0.25s ease; }
a:hover { color: #ffe066; text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   Age Gate Modal
   ========================================================================== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-gate--hidden { display: none; }

.age-gate__box {
  background: linear-gradient(145deg, #131c3a, #1a2650);
  border: 2px solid #f5c500;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(245, 197, 0, 0.25);
}

.age-gate__icon { font-size: 3.5rem; margin-bottom: 1rem; }

.age-gate__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f5c500;
  margin-bottom: 0.5rem;
}

.age-gate__subtitle {
  font-size: 1rem;
  color: #b0b8d0;
  margin-bottom: 0.75rem;
}

.age-gate__disclaimer {
  font-size: 0.8rem;
  color: #7a8299;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.age-gate__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-gate__btn {
  flex: 1;
  max-width: 160px;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.age-gate__btn:hover { transform: translateY(-2px); }

.age-gate__btn--yes {
  background: linear-gradient(135deg, #f5c500, #e8a000);
  color: #0d1220;
  box-shadow: 0 4px 20px rgba(245, 197, 0, 0.4);
}

.age-gate__btn--yes:hover { box-shadow: 0 6px 28px rgba(245, 197, 0, 0.6); }

.age-gate__btn--no {
  background: transparent;
  color: #e8e8e8;
  border: 2px solid #4a5568;
}

.age-gate__btn--no:hover { border-color: #718096; background: rgba(255,255,255,0.05); }

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #111827, #1f2937);
  border-top: 2px solid #f5c500;
  z-index: 5000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}

.cookie-banner--hidden { display: none; }

.cookie-banner__text {
  flex: 1;
  min-width: 250px;
  font-size: 0.875rem;
  color: #cbd5e0;
  margin: 0;
}

.cookie-banner__text a { color: #f5c500; }

.cookie-banner__buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.cookie-btn--accept {
  background: linear-gradient(135deg, #f5c500, #e8a000);
  color: #0d1220;
}

.cookie-btn--accept:hover { background: linear-gradient(135deg, #ffe066, #f5c500); }

.cookie-btn--essential {
  background: transparent;
  color: #a0aec0;
  border: 1px solid #4a5568;
}

.cookie-btn--essential:hover { border-color: #718096; color: #e8e8e8; }

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  border-bottom: 3px solid #f5c500;
  position: sticky;
  top: 0;
  z-index: 1000;
}

@supports (-webkit-appearance: none) {
  .site-header { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); background: rgba(255,255,255,0.97); }
}

.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo-link { display: block; transition: opacity 0.2s ease; }
.site-header__logo-link:hover { opacity: 0.85; text-decoration: none; }
.site-header__logo-link img { height: 52px; width: auto; }

.site-header__nav { display: flex; gap: 0.25rem; align-items: center; }

.site-header__nav-link {
  color: #1a202c;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.site-header__nav-link:hover {
  background: #fef9e7;
  color: #b8860b;
  text-decoration: none;
}

/* Hamburger */
.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.site-header__menu-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a202c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header__menu-toggle--open .site-header__menu-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__menu-toggle--open .site-header__menu-line:nth-child(2) { opacity: 0; }
.site-header__menu-toggle--open .site-header__menu-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }

/* ==========================================================================
   Page Header / Hero
   ========================================================================== */
.page-header {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.page-header__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #f5c500;
  font-family: Georgia, serif;
  margin-bottom: 0.75rem;
}

.page-header__subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Warning / Disclaimer Section
   ========================================================================== */
.warning-section {
  background: linear-gradient(135deg, #1c1205, #261a06);
  border: 1px solid #92610a;
  border-left: 4px solid #f5c500;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.warning-section__inner { display: flex; align-items: flex-start; gap: 1rem; }
.warning-section__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.warning-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: #f5c500;
  margin-bottom: 0.4rem;
}

.warning-section__text { font-size: 0.875rem; color: #c9a227; margin: 0; line-height: 1.6; }
.warning-section__text a { color: #ffe066; }
.warning-section__text strong { color: #fff; }

/* ==========================================================================
   Casino Cards
   ========================================================================== */
.casinos-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 3rem; }

.casino-card {
  background: linear-gradient(145deg, #131c3a, #192347);
  border: 1px solid #2a3a6e;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(245, 197, 0, 0.12);
  border-color: #f5c500;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5c500, #e8a000, transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.casino-card:hover::before { opacity: 1; }

/* Badge */
.casino-card__badge {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.casino-card__badge--editors-pick { background: linear-gradient(135deg, #f5c500, #e8a000); color: #0d1220; }
.casino-card__badge--popular { background: linear-gradient(135deg, #e91e8c, #9c27b0); color: #fff; }
.casino-card__badge--top-choice { background: linear-gradient(135deg, #1db954, #0a8f3e); color: #fff; }

/* Rank */
.casino-card__rank {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c500, #c8760a);
  color: #0d1220;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Logo */
.casino-card__logo {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
  border: 2px solid #2a3a6e;
  transition: border-color 0.2s ease;
}

.casino-card:hover .casino-card__logo { border-color: #f5c500; }
.casino-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

/* Info */
.casino-card__info { flex: 1; min-width: 0; }

.casino-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 0.35rem;
}

.casino-card__stars { color: #f5c500; font-size: 1rem; letter-spacing: 2px; }

.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.casino-card__score {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f5c500;
}

/* Features */
.casino-card__features { display: flex; flex-direction: column; gap: 0.3rem; }

.casino-card__feature {
  font-size: 0.83rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.casino-card__feature-check { color: #1db954; font-weight: 700; flex-shrink: 0; }
.casino-card__feature a { color: #94a3b8; font-size: 0.83rem; }
.casino-card__feature a:hover { color: #f5c500; text-decoration: none; }

/* Offer panel */
.casino-card__offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 195px;
  flex-shrink: 0;
}

.casino-card__bonus {
  background: linear-gradient(135deg, #1e3a1e, #1a3310);
  border: 1px solid #1db954;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}

.casino-card__bonus:hover {
  background: linear-gradient(135deg, #244824, #1e3c14);
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.25);
  text-decoration: none;
}

.casino-card__bonus-amount {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1db954;
  line-height: 1.3;
}

.casino-card__bonus-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.casino-card__play-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #f5c500, #e8a000);
  color: #0d1220;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(245, 197, 0, 0.35);
}

.casino-card__play-btn:hover {
  background: linear-gradient(135deg, #ffe066, #f5c500);
  box-shadow: 0 6px 24px rgba(245, 197, 0, 0.5);
  transform: translateY(-1px);
  text-decoration: none;
  color: #0d1220;
}

.casino-card__terms {
  font-size: 0.72rem;
  color: #4a5568;
  text-align: center;
  line-height: 1.4;
}

.casino-card__terms a { color: #4a5568; }
.casino-card__terms a:hover { color: #f5c500; text-decoration: none; }

/* ==========================================================================
   Responsible Gaming Section
   ========================================================================== */
.responsible-section {
  background: linear-gradient(145deg, #0e1827, #111e30);
  border: 1px solid #1e3a5f;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.responsible-section__title {
  font-size: 1.6rem;
  color: #f5c500;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  text-align: center;
}

.responsible-section__text {
  color: #94a3b8;
  font-size: 0.925rem;
  max-width: 800px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

/* Org cards grid */
.org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.org-card {
  background: linear-gradient(145deg, #131c3a, #192347);
  border: 1px solid #2a3a6e;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
}

.org-card:hover {
  border-color: #f5c500;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 197, 0, 0.15);
  text-decoration: none;
}

.org-card img { width: 80px; height: 48px; object-fit: contain; border-radius: 6px; }
.org-card__name { font-size: 0.85rem; font-weight: 700; color: #e2e8f0; }
.org-card__sub { font-size: 0.72rem; color: #64748b; }

/* Helpline */
.helpline-box {
  background: linear-gradient(135deg, #1c1205, #261a06);
  border: 1px solid #92610a;
  border-radius: 12px;
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.helpline-box__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5c500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.helpline-list { display: flex; flex-direction: column; gap: 0.75rem; }

.helpline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #c9a227;
}

.helpline-item strong { color: #f5c500; }
.helpline-item a { color: #ffe066; }
.helpline-item a:hover { color: #fff; }

.helpline-cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.7rem 1.75rem;
  background: linear-gradient(135deg, #f5c500, #e8a000);
  color: #0d1220;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.helpline-cta:hover { background: linear-gradient(135deg, #ffe066, #f5c500); text-decoration: none; color: #0d1220; }

/* ==========================================================================
   Info / Guide Section
   ========================================================================== */
.info-section {
  background: linear-gradient(145deg, #131c3a, #192347);
  border: 1px solid #2a3a6e;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.info-section__title {
  font-size: 1.5rem;
  color: #f5c500;
  font-family: Georgia, serif;
  margin-bottom: 1.25rem;
}

.info-section p { color: #94a3b8; font-size: 0.925rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.45rem; margin: 1rem 0; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.feature-item__check { color: #1db954; font-weight: 700; flex-shrink: 0; }

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: linear-gradient(145deg, #0e1827, #111e30);
  border: 1px solid #1e3a5f;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.faq-section__title {
  font-size: 1.5rem;
  color: #f5c500;
  font-family: Georgia, serif;
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #1e3a5f;
}

.faq-item:last-child { border-bottom: none; }

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-item__question-text { font-size: 0.95rem; font-weight: 600; color: #e2e8f0; }

.faq-item__toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2a4a, #253356);
  border: 1px solid #2a3a6e;
  color: #f5c500;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.faq-item--expanded .faq-item__toggle {
  background: linear-gradient(135deg, #f5c500, #e8a000);
  color: #0d1220;
  border-color: #f5c500;
}

.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item__answer-content { padding: 0 0 1rem; color: #94a3b8; font-size: 0.9rem; line-height: 1.7; }
.faq-item__answer-content a { color: #f5c500; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  display: flex;
  list-style: none;
  font-size: 0.85rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.breadcrumb li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumb a { color: #f5c500; }
.breadcrumb a:hover { color: #ffe066; text-decoration: none; }
.breadcrumb__sep { color: #4a5568; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, #0a0e1a, #060810);
  border-top: 2px solid #1e2a4a;
  padding: 3rem 1.5rem 2rem;
  margin-top: 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__orgs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1e2a4a;
}

.footer__org-link {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: block;
}

.footer__org-link:hover { opacity: 1; text-decoration: none; }
.footer__org-link img { width: 72px; height: 44px; object-fit: contain; border-radius: 5px; }

.footer__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer__badge-18 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c62828, #8b0000);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e53935;
}

.footer__uk-badge {
  background: #003087;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__link { color: #64748b; font-size: 0.875rem; }
.footer__link:hover { color: #f5c500; text-decoration: none; }

.footer__text {
  font-size: 0.8rem;
  color: #4a5568;
  text-align: center;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 0.75rem;
}

/* ==========================================================================
   Casino Review Page
   ========================================================================== */
.review-hero {
  background: linear-gradient(145deg, #131c3a, #192347);
  border: 1px solid #2a3a6e;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.review-hero__logo {
  width: 120px;
  height: 80px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #2a3a6e;
  overflow: hidden;
}

.review-hero__logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.review-hero__info { flex: 1; min-width: 200px; }

.review-hero__name {
  font-size: 1.8rem;
  color: #f5c500;
  font-family: Georgia, serif;
  margin-bottom: 0.35rem;
}

.review-hero__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.review-hero__stars { color: #f5c500; font-size: 1.2rem; }
.review-hero__score { font-size: 1.3rem; font-weight: 800; color: #f5c500; }

.review-hero__features { display: flex; flex-direction: column; gap: 0.3rem; }
.review-hero__feature { font-size: 0.875rem; color: #94a3b8; display: flex; align-items: center; gap: 0.4rem; }
.review-hero__feature-check { color: #1db954; font-weight: 700; }

.review-hero__cta { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; min-width: 180px; }

.review-cta-btn {
  display: block;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #f5c500, #e8a000);
  color: #0d1220;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(245, 197, 0, 0.4);
  white-space: nowrap;
}

.review-cta-btn:hover { background: linear-gradient(135deg, #ffe066, #f5c500); box-shadow: 0 6px 28px rgba(245, 197, 0, 0.55); text-decoration: none; color: #0d1220; transform: translateY(-1px); }

.review-cta-terms { font-size: 0.72rem; color: #4a5568; text-align: center; }
.review-cta-terms a { color: #4a5568; }

/* Review sections */
.review-section {
  background: linear-gradient(145deg, #131c3a, #192347);
  border: 1px solid #2a3a6e;
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.review-section__title {
  font-size: 1.2rem;
  color: #f5c500;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2a3a6e;
}

.review-section p { color: #94a3b8; font-size: 0.9rem; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.pros-cons__col h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; }
.pros-cons__col--pros h4 { color: #1db954; }
.pros-cons__col--cons h4 { color: #e53935; }

.pros-cons__list { display: flex; flex-direction: column; gap: 0.4rem; list-style: none; }
.pros-cons__item { font-size: 0.875rem; color: #94a3b8; display: flex; align-items: flex-start; gap: 0.5rem; }
.pros-cons__item--pro::before { content: '✓'; color: #1db954; font-weight: 700; flex-shrink: 0; }
.pros-cons__item--con::before { content: '✗'; color: #e53935; font-weight: 700; flex-shrink: 0; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

.payment-item {
  background: #0e1827;
  border: 1px solid #1e3a5f;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}

/* ==========================================================================
   Policy / Terms Pages
   ========================================================================== */
.policy-header {
  background: linear-gradient(145deg, #131c3a, #192347);
  border-bottom: 2px solid #f5c500;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.policy-header__title { font-size: 1.8rem; color: #f5c500; font-family: Georgia, serif; }
.policy-header__date { font-size: 0.875rem; color: #64748b; margin-top: 0.5rem; }

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-section { margin-bottom: 2.5rem; }

.policy-section__title {
  font-size: 1.15rem;
  color: #f5c500;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #2a3a6e;
}

.policy-section p, .policy-section li {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.75;
}

.policy-section ul, .policy-section ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-section li { margin-bottom: 0.4rem; }
.policy-section a { color: #f5c500; }

/* ==========================================================================
   Underage Page
   ========================================================================== */
.underage-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #0d1220 0%, #0a0e1a 100%);
}

.underage-box {
  background: linear-gradient(145deg, #131c3a, #192347);
  border: 2px solid #2a3a6e;
  border-radius: 20px;
  padding: 3rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.underage-box__icon { font-size: 4rem; margin-bottom: 1.25rem; }
.underage-box__title { font-size: 1.8rem; color: #e53935; font-family: Georgia, serif; margin-bottom: 0.75rem; }
.underage-box__text { color: #94a3b8; font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; }

.underage-box__links { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }

.underage-link {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.underage-link--primary {
  background: linear-gradient(135deg, #00843d, #005c2b);
  color: white;
}

.underage-link--primary:hover { background: linear-gradient(135deg, #1db954, #00843d); text-decoration: none; color: white; }

.underage-link--secondary { color: #64748b; font-size: 0.85rem; }
.underage-link--secondary:hover { color: #f5c500; text-decoration: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; gap: 1rem; }
  .review-hero { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .site-header__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 1rem;
    gap: 0.25rem;
    border-top: 2px solid #f5c500;
  }

  .site-header__nav--open { display: flex; }
  .site-header__menu-toggle { display: flex; }
  .site-header__container { position: relative; }

  .casino-card {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .casino-card__offer {
    width: 100%;
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .casino-card__bonus { flex: 1; }
  .casino-card__play-btn { flex: 1; min-width: 120px; }
  .casino-card__terms { width: 100%; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .age-gate__buttons { flex-direction: column; align-items: stretch; }
  .age-gate__btn { max-width: 100%; }
  .footer__orgs { gap: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 1.25rem 1rem; }
  .casino-card { padding: 1.25rem 1rem; }
  .casino-card__logo { width: 72px; height: 72px; }
  .casino-card__badge { top: 8px; right: 8px; font-size: 0.65rem; }
  .responsible-section { padding: 1.5rem 1.25rem; }
  .info-section { padding: 1.5rem 1.25rem; }
  .faq-section { padding: 1.5rem 1.25rem; }
  .review-section { padding: 1.5rem 1.25rem; }
  .underage-box { padding: 2rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
