/* ==========================================================================
   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: #0b1f14;
  color: #e0ebe4;
  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: #00a86b; text-decoration: none; transition: all 0.25s ease; }
a:hover { color: #00d488; text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   Age Gate
   ========================================================================== */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(5, 18, 10, 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, #0e2418, #163628);
  border: 2px solid #00a86b;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(0, 168, 107, 0.2);
}
.age-gate__icon { font-size: 3.5rem; margin-bottom: 1rem; }
.age-gate__title { font-size: 1.8rem; font-weight: 800; color: #00a86b; margin-bottom: 0.5rem; }
.age-gate__subtitle { font-size: 1rem; color: #7aab8a; margin-bottom: 0.75rem; }
.age-gate__disclaimer { font-size: 0.8rem; color: #4a7a5a; 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, #00a86b, #007a4d);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 168, 107, 0.4);
}
.age-gate__btn--yes:hover { box-shadow: 0 6px 28px rgba(0, 168, 107, 0.6); }
.age-gate__btn--no {
  background: transparent; color: #e0ebe4; border: 2px solid #2a4a35;
}
.age-gate__btn--no:hover { border-color: #4a7a5a; background: rgba(255,255,255,0.05); }

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #0e2418, #163628);
  border-top: 2px solid #00a86b;
  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: #a0c8b0; margin: 0; }
.cookie-banner__text a { color: #00a86b; }
.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, #00a86b, #007a4d); color: #fff; }
.cookie-btn--accept:hover { background: linear-gradient(135deg, #00d488, #00a86b); }
.cookie-btn--essential { background: transparent; color: #7aab8a; border: 1px solid #2a4a35; }
.cookie-btn--essential:hover { border-color: #4a7a5a; color: #e0ebe4; }

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  border-bottom: 3px solid #00a86b;
  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: #e8f5ee; color: #007a4d; text-decoration: none; }
.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
   ========================================================================== */
.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: #00a86b; font-family: Georgia, serif; margin-bottom: 0.75rem; }
.page-header__subtitle { font-size: 1.05rem; color: #7aab8a; max-width: 680px; margin: 0 auto; }

/* ==========================================================================
   Warning Section
   ========================================================================== */
.warning-section {
  background: linear-gradient(135deg, #0a1e0f, #0f2a17);
  border: 1px solid #1a5c30;
  border-left: 4px solid #00a86b;
  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: #00a86b; margin-bottom: 0.4rem; }
.warning-section__text { font-size: 0.875rem; color: #7aab8a; margin: 0; line-height: 1.6; }
.warning-section__text a { color: #00d488; }
.warning-section__text strong { color: #e0ebe4; }

/* ==========================================================================
   Casino Cards
   ========================================================================== */
.casinos-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 3rem; }

.casino-card {
  background: linear-gradient(145deg, #0e2418, #122d1e);
  border: 1px solid #1a4030;
  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(0, 168, 107, 0.12);
  border-color: #00a86b;
}
.casino-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #00a86b, #007a4d, transparent);
  opacity: 0; transition: opacity 0.2s ease;
}
.casino-card:hover::before { opacity: 1; }

.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, #00a86b, #007a4d); color: #fff; }
.casino-card__badge--popular { background: linear-gradient(135deg, #e91e8c, #9c27b0); color: #fff; }
.casino-card__badge--top-choice { background: linear-gradient(135deg, #ff9500, #e07000); color: #fff; }

.casino-card__rank {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #00a86b, #007a4d);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.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 #1a4030;
  transition: border-color 0.2s ease;
}
.casino-card:hover .casino-card__logo { border-color: #00a86b; }
.casino-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.casino-card__info { flex: 1; min-width: 0; }
.casino-card__name { font-size: 1.2rem; font-weight: 700; color: #e0ebe4; margin-bottom: 0.35rem; }
.casino-card__stars { color: #00a86b; 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: #00a86b; }
.casino-card__features { display: flex; flex-direction: column; gap: 0.3rem; }
.casino-card__feature { font-size: 0.83rem; color: #7aab8a; display: flex; align-items: center; gap: 0.4rem; }
.casino-card__feature-check { color: #00a86b; font-weight: 700; flex-shrink: 0; }
.casino-card__feature a { color: #7aab8a; font-size: 0.83rem; }
.casino-card__feature a:hover { color: #00a86b; text-decoration: none; }

.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, #0a2e18, #0e3820);
  border: 1px solid #00a86b; 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, #0f3820, #133f26); box-shadow: 0 4px 20px rgba(0, 168, 107, 0.25); text-decoration: none; }
.casino-card__bonus-amount { font-size: 0.95rem; font-weight: 800; color: #00a86b; line-height: 1.3; }
.casino-card__bonus-sub { font-size: 0.78rem; color: #4a7a5a; margin-top: 0.25rem; }

.casino-card__play-btn {
  display: block; width: 100%; padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #00a86b, #007a4d);
  color: #fff; 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(0, 168, 107, 0.35);
}
.casino-card__play-btn:hover { background: linear-gradient(135deg, #00d488, #00a86b); box-shadow: 0 6px 24px rgba(0, 168, 107, 0.5); transform: translateY(-1px); text-decoration: none; color: #fff; }
.casino-card__terms { font-size: 0.72rem; color: #2a4a35; text-align: center; line-height: 1.4; }
.casino-card__terms a { color: #2a4a35; }
.casino-card__terms a:hover { color: #00a86b; text-decoration: none; }

/* ==========================================================================
   Responsible Gaming
   ========================================================================== */
.responsible-section {
  background: linear-gradient(145deg, #0a1e10, #0e2818);
  border: 1px solid #1a4030; border-radius: 16px; padding: 2.5rem; margin-bottom: 3rem;
}
.responsible-section__title { font-size: 1.6rem; color: #00a86b; font-family: Georgia, serif; margin-bottom: 1rem; text-align: center; }
.responsible-section__text { color: #7aab8a; font-size: 0.925rem; max-width: 800px; margin: 0 auto 1.25rem; text-align: center; }

.org-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0; }
.org-card {
  background: linear-gradient(145deg, #0e2418, #122d1e);
  border: 1px solid #1a4030; 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: #00a86b; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0, 168, 107, 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: #c8e6d4; }
.org-card__sub { font-size: 0.72rem; color: #4a7a5a; }

.helpline-box { background: linear-gradient(135deg, #0a1e10, #0e2818); border: 1px solid #1a5c30; border-radius: 12px; padding: 1.75rem; margin-top: 1.5rem; }
.helpline-box__title { font-size: 1.1rem; font-weight: 700; color: #00a86b; 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: #7aab8a; }
.helpline-item strong { color: #00a86b; }
.helpline-item a { color: #00d488; }
.helpline-item a:hover { color: #fff; }
.helpline-cta { display: inline-block; margin-top: 1.25rem; padding: 0.7rem 1.75rem; background: linear-gradient(135deg, #00a86b, #007a4d); color: #fff; 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, #00d488, #00a86b); text-decoration: none; color: #fff; }

/* ==========================================================================
   Info / Guide Section
   ========================================================================== */
.info-section { background: linear-gradient(145deg, #0e2418, #122d1e); border: 1px solid #1a4030; border-radius: 16px; padding: 2.5rem; margin-bottom: 3rem; }
.info-section__title { font-size: 1.5rem; color: #00a86b; font-family: Georgia, serif; margin-bottom: 1.25rem; }
.info-section p { color: #7aab8a; 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: #7aab8a; }
.feature-item__check { color: #00a86b; font-weight: 700; flex-shrink: 0; }

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section { background: linear-gradient(145deg, #0a1e10, #0e2818); border: 1px solid #1a4030; border-radius: 16px; padding: 2.5rem; margin-bottom: 3rem; }
.faq-section__title { font-size: 1.5rem; color: #00a86b; font-family: Georgia, serif; margin-bottom: 1.5rem; text-align: center; }
.faq-item { border-bottom: 1px solid #1a4030; }
.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: #c8e6d4; }
.faq-item__toggle { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #122d1e, #163628); border: 1px solid #1a4030; color: #00a86b; 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, #00a86b, #007a4d); color: #fff; border-color: #00a86b; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item__answer-content { padding: 0 0 1rem; color: #7aab8a; font-size: 0.9rem; line-height: 1.7; }
.faq-item__answer-content a { color: #00a86b; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb { display: flex; list-style: none; font-size: 0.85rem; color: #2a4a35; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.25rem; }
.breadcrumb li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumb a { color: #00a86b; }
.breadcrumb a:hover { color: #00d488; text-decoration: none; }
.breadcrumb__sep { color: #2a4a35; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: linear-gradient(180deg, #071410, #040e09); border-top: 2px solid #1a4030; 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 #1a4030; }
.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: #2a4a35; font-size: 0.875rem; }
.footer__link:hover { color: #00a86b; text-decoration: none; }
.footer__text { font-size: 0.8rem; color: #2a4a35; text-align: center; line-height: 1.7; max-width: 820px; margin: 0 auto 0.75rem; }

/* ==========================================================================
   Casino Review Page
   ========================================================================== */
.review-hero { background: linear-gradient(145deg, #0e2418, #122d1e); border: 1px solid #1a4030; 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 #1a4030; 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: #00a86b; 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: #00a86b; font-size: 1.2rem; }
.review-hero__score { font-size: 1.3rem; font-weight: 800; color: #00a86b; }
.review-hero__features { display: flex; flex-direction: column; gap: 0.3rem; }
.review-hero__feature { font-size: 0.875rem; color: #7aab8a; display: flex; align-items: center; gap: 0.4rem; }
.review-hero__feature-check { color: #00a86b; 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, #00a86b, #007a4d); color: #fff; 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(0, 168, 107, 0.35); white-space: nowrap; }
.review-cta-btn:hover { background: linear-gradient(135deg, #00d488, #00a86b); box-shadow: 0 6px 28px rgba(0, 168, 107, 0.5); text-decoration: none; color: #fff; transform: translateY(-1px); }
.review-cta-terms { font-size: 0.72rem; color: #2a4a35; text-align: center; }
.review-cta-terms a { color: #2a4a35; }

.review-section { background: linear-gradient(145deg, #0e2418, #122d1e); border: 1px solid #1a4030; border-radius: 14px; padding: 2rem; margin-bottom: 1.5rem; }
.review-section__title { font-size: 1.2rem; color: #00a86b; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #1a4030; }
.review-section p { color: #7aab8a; 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: #00a86b; }
.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: #7aab8a; display: flex; align-items: flex-start; gap: 0.5rem; }
.pros-cons__item--pro::before { content: '✓'; color: #00a86b; 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: #071410; border: 1px solid #1a4030; border-radius: 8px; padding: 0.6rem 0.75rem; font-size: 0.8rem; color: #7aab8a; text-align: center; }

/* ==========================================================================
   Policy Pages
   ========================================================================== */
.policy-header { background: linear-gradient(145deg, #0e2418, #122d1e); border-bottom: 2px solid #00a86b; padding: 2rem 1.5rem; text-align: center; margin-bottom: 2.5rem; }
.policy-header__title { font-size: 1.8rem; color: #00a86b; font-family: Georgia, serif; }
.policy-header__date { font-size: 0.875rem; color: #2a4a35; 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: #00a86b; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.4rem; border-bottom: 1px solid #1a4030; }
.policy-section p, .policy-section li { color: #7aab8a; 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: #00a86b; }

/* ==========================================================================
   Underage Page
   ========================================================================== */
.underage-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: linear-gradient(135deg, #0b1f14 0%, #071410 100%); }
.underage-box { background: linear-gradient(145deg, #0e2418, #122d1e); border: 2px solid #1a4030; 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: #7aab8a; 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, #00a86b, #007a4d); text-decoration: none; color: white; }
.underage-link--secondary { color: #2a4a35; font-size: 0.85rem; }
.underage-link--secondary:hover { color: #00a86b; 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 #00a86b; }
  .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, .info-section, .faq-section, .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; } }
