/* ============================================
   IRELAND CASINO EXPERT — Main Stylesheet
   Theme: Dark Editorial / Art-Deco Emerald
   ============================================ */

:root {
  --emerald:        #0D5C3A;
  --emerald-light:  #169B62;
  --emerald-dark:   #073D27;
  --emerald-dim:    #0a4a2e;
  --gold:           #C9A84C;
  --gold-light:     #E8C97A;
  --gold-dark:      #A07A30;
  --ivory:          #F5F0E8;
  --ivory-dark:     #EDE7D5;
  --charcoal:       #1A1A1A;
  --charcoal-mid:   #2D2D2D;
  --charcoal-light: #3D3D3D;
  --text-dark:      #1C2023;
  --text-mid:       #3D4548;
  --text-light:     #6B7280;
  --white:          #FFFFFF;
  --red-warn:       #DC2626;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.1);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold:    0 4px 20px rgba(201,168,76,0.25);
  --radius:         12px;
  --radius-lg:      20px;
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', 'Helvetica Neue', sans-serif;
  --transition:     0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-top {
  background: var(--emerald-dark);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.age-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.header-links a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.header-links a:hover { color: var(--gold-light); }
.header-links .divider { color: rgba(255,255,255,0.3); }

.header-main {
  background: var(--emerald);
  padding: 14px 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 30px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-primary {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-secondary {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: all var(--transition);
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

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

.age-pill {
  background: var(--red-warn);
  color: white;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 50%, var(--emerald-dim) 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shamrock-bg {
  position: absolute;
  right: -60px;
  top: -60px;
  font-size: 400px;
  opacity: 0.04;
  color: white;
  line-height: 1;
  transform: rotate(15deg);
  font-family: serif;
}
.hero-shamrock-bg::before { content: '☘'; }

.hero .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.dot-live {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--emerald-light);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22,155,98,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,155,98,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(22,155,98,0.1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

.stat { text-align: center; padding: 0 28px 0 0; }
.stat:first-child { padding-left: 0; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  margin-right: 28px;
  flex-shrink: 0;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-hero .arrow { transition: transform var(--transition); }
.btn-hero:hover .arrow { transform: translateY(3px); }

/* Hero Featured Card */
.hero-featured-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  position: relative;
}

.featured-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.featured-casino-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.fcm-logo {
  font-size: 40px;
  flex-shrink: 0;
}

.fcm-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: white;
  font-weight: 700;
}

.fcm-info span {
  display: block;
  font-size: 13px;
  color: var(--gold-light);
  margin-top: 2px;
}

.featured-bonus-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.btn-featured {
  display: block;
  background: var(--emerald-light);
  color: white;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: all var(--transition);
  font-size: 15px;
}

.btn-featured:hover {
  background: #1db87a;
  transform: translateY(-1px);
}

.featured-tnc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(13,92,58,0.1);
  color: var(--emerald);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(13,92,58,0.15);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.65;
}

/* ========== CASINO CARDS ========== */
.casinos-section {
  padding: 80px 0;
}

.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.casino-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.casino-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.casino-card--featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.casino-card--featured::before {
  content: '⭐ Editor\'s Choice';
  position: absolute;
  top: -1px;
  left: 24px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

.card-rank {
  position: absolute;
  top: 20px;
  right: 20px;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.rank-gold { background: var(--gold); color: var(--charcoal); }
.rank-silver { background: #C0C0C0; color: var(--charcoal); }
.rank-bronze { background: #CD7F32; color: white; }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 0;
  gap: 16px;
}

.card-logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.casino-logo-icon {
  font-size: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.casino-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.casino-tagline {
  font-size: 13px;
  color: var(--text-light);
}

.card-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-top: 4px;
}

.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.3); }
.badge-green { background: rgba(22,155,98,0.12); color: var(--emerald); border: 1px solid rgba(22,155,98,0.25); }
.badge-silver { background: rgba(0,0,0,0.06); color: #555; border: 1px solid rgba(0,0,0,0.1); }

.card-body {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 0;
  padding: 20px 28px;
  align-items: start;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 28px;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.rating-score {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--emerald);
  line-height: 1;
}

.rating-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 4px;
}

.stars-bar {
  position: relative;
  display: flex;
  gap: 3px;
  margin-top: 4px;
}

.stars-bar::before {
  content: '★★★★★';
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
}

.card-bonus {
  padding: 0 28px;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.bonus-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
}

.bonus-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--emerald);
  margin-bottom: 4px;
}

.bonus-detail {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.4;
}

.bonus-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bonus-meta span {
  background: rgba(0,0,0,0.05);
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  padding-left: 28px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--emerald-light);
  flex-shrink: 0;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px 28px;
  flex-wrap: wrap;
}

.btn-claim {
  display: inline-block;
  background: var(--emerald);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-claim:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,92,58,0.3);
}

.btn-review {
  display: inline-block;
  color: var(--emerald);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--emerald);
  transition: all var(--transition);
}

.btn-review:hover {
  background: var(--emerald);
  color: white;
}

.card-tnc {
  font-size: 11px;
  color: var(--text-light);
  margin-left: auto;
}

/* ========== BONUS TABLE ========== */
.bonus-section {
  background: var(--emerald-dark);
  padding: 80px 0;
}

.bonus-section .section-tag {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.25);
}

.bonus-section h2 { color: white; }
.bonus-section p { color: rgba(255,255,255,0.65); }

.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 700px;
}

.bonus-table th {
  background: var(--emerald);
  color: white;
  text-align: left;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.bonus-table th:first-child { border-radius: var(--radius) 0 0 0; }
.bonus-table th:last-child { border-radius: 0 var(--radius) 0 0; }

.bonus-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tr-featured td {
  background: rgba(201,168,76,0.06);
  font-weight: 600;
}

.td-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.t-icon { font-size: 20px; }

.td-bonus { color: var(--emerald); font-weight: 600; }

.table-rating {
  display: inline-block;
  background: var(--emerald);
  color: white;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
}

.btn-table {
  display: inline-block;
  background: var(--emerald);
  color: white;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all var(--transition);
}

.btn-table:hover { background: var(--emerald-light); }

.table-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ========== HOW WE RATE ========== */
.how-section { padding: 80px 0; background: var(--ivory-dark); }

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

.criterion {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--emerald-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.criterion:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.criterion-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.criterion h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.criterion p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 12px;
}

.criterion-weight {
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ========== INFO SECTION ========== */
.info-section { padding: 80px 0; }

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

.info-text .section-tag { text-align: left; display: inline-block; }

.info-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}

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

.info-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 12px;
  background: rgba(13,92,58,0.06);
  border-radius: 8px;
  border-left: 3px solid var(--emerald-light);
}

.info-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
}

.ic-icon { font-size: 28px; margin-bottom: 8px; }

.info-card h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ========== FAQ ========== */
.faq-section {
  padding: 80px 0;
  background: var(--ivory-dark);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--emerald); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--emerald);
  transition: transform var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner { position: relative; z-index: 1; }

.cta-shamrock {
  font-size: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.cta-note {
  margin-top: 18px;
  font-size: 12px !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 0 !important;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo { margin-bottom: 16px; display: inline-flex; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.age-warning-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.age-number {
  font-size: 28px;
  font-weight: 900;
  color: #FCA5A5;
  line-height: 1;
  flex-shrink: 0;
}

.age-text {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

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

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold-light); }

/* Responsible gambling */
.footer-responsible {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
}

.responsible-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  text-align: center;
}

.resp-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
}

.resp-logo-item { text-decoration: none; }

.resp-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
  min-width: 90px;
}

.resp-logo-box:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
}

.resp-logo-box span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.04em;
}

.age-logo-box { cursor: default; }
.big-18 {
  font-size: 28px;
  font-weight: 900;
  color: #FCA5A5;
  line-height: 1;
  padding: 6px 0;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-disclaimer a:hover { color: var(--gold-light); }

.age-footer-line { color: rgba(255,255,255,0.5) !important; }

.copyright {
  font-size: 11px !important;
  color: rgba(255,255,255,0.25) !important;
  margin-top: 8px;
  margin-bottom: 0 !important;
}

/* ========== REVIEW PAGE ========== */
.review-hero {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  padding: 48px 0 52px;
  color: white;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.review-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.review-hero-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.review-logo-icon {
  font-size: 64px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.review-hero-info h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.review-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.review-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-licence { background: rgba(201,168,76,0.2); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); }
.meta-since { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.meta-games { background: rgba(22,155,98,0.25); color: #7FE8BC; }

.review-score-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  min-width: 200px;
}

.rsb-score {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.rsb-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.rsb-stars-bar::before {
  content: '★★★★★';
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 3px;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}

.rsb-tnc {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.review-body { padding: 48px 0; }

.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.review-summary-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--emerald-light);
}

.review-summary-box h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.review-summary-box p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

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

.pros, .cons {
  padding: 16px;
  border-radius: var(--radius);
}

.pros {
  background: rgba(22,155,98,0.07);
  border: 1px solid rgba(22,155,98,0.2);
}

.cons {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.15);
}

.pros h4, .cons h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pros ul, .cons ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pros li, .cons li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}

.score-breakdown {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.score-breakdown h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.score-rows { display: flex; flex-direction: column; gap: 14px; }

.score-row {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  align-items: center;
  gap: 16px;
}

.sr-label { font-size: 14px; font-weight: 500; color: var(--text-mid); }

.sr-bar-wrap {
  height: 8px;
  background: rgba(0,0,0,0.07);
  border-radius: 4px;
  overflow: hidden;
}

.sr-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  border-radius: 4px;
  transition: width 1s ease;
}

.sr-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald);
  text-align: right;
}

.review-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.review-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.bonus-highlight-box {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  border-radius: var(--radius);
  padding: 24px;
  color: white;
  text-align: center;
  margin-bottom: 16px;
}

.bhb-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.bhb-detail {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.bhb-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bhb-meta div {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px;
}

.bhb-meta strong {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.bhb-meta span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}

.block-note {
  font-size: 12px;
  color: var(--text-light);
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-item {
  background: rgba(0,0,0,0.05);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.09);
}

.features-list--large li {
  font-size: 15px;
  padding: 4px 0;
}

.review-cta-block {
  text-align: center;
  padding: 32px;
  background: rgba(13,92,58,0.06);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(13,92,58,0.25);
}

.btn-claim--large {
  font-size: 18px;
  padding: 18px 40px;
  display: inline-block;
  margin-bottom: 12px;
}

.review-cta-block p {
  font-size: 13px;
  color: var(--text-light);
}

/* Sidebar */
.review-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
}

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

.quick-info-table {
  width: 100%;
  border-collapse: collapse;
}

.quick-info-table td {
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.quick-info-table td:first-child { color: var(--text-light); }
.quick-info-table td:last-child { text-align: right; color: var(--text-dark); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: white;
  text-align: center;
}

.sw-bonus {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 14px;
}

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

.sw-tnc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
}

.sidebar-casinos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-casinos a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.04);
  transition: all var(--transition);
}

.sidebar-casinos a:hover {
  background: rgba(13,92,58,0.08);
  color: var(--emerald);
}

.sc-icon { font-size: 20px; }
.sc-name { font-size: 14px; font-weight: 600; flex: 1; }
.sc-rating { font-size: 12px; color: var(--text-light); }

.sidebar-resp { background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.15); }

.resp-link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color var(--transition);
}

.resp-link:hover { color: var(--emerald-light); }
.resp-link:last-child { border: none; }

/* ========== LEGAL PAGE ========== */
.legal-section { padding: 60px 0 80px; }

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--emerald-dark);
  margin: 28px 0 10px;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content a { color: var(--emerald); text-decoration: underline; }
.legal-content a:hover { color: var(--emerald-light); }

.legal-footer-note {
  margin-top: 40px;
  padding: 16px 20px;
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-mid);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-featured-card { display: none; }
  .card-body { grid-template-columns: auto 1fr; }
  .features-list { display: none; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .info-grid { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--emerald-dark); padding: 16px; }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .hero { padding: 48px 0 60px; }
  .card-body { grid-template-columns: 1fr; gap: 16px; }
  .card-rating { border: none; padding: 0; }
  .card-bonus { border: none; padding: 0; }
  .criteria-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .review-hero-grid { grid-template-columns: 1fr; }
  .review-hero-info { flex-direction: column; gap: 12px; }
  .review-logo-icon { font-size: 48px; }
  .score-row { grid-template-columns: 120px 1fr 50px; }
  .bhb-meta { grid-template-columns: 1fr; }
  .legal-content { padding: 28px 24px; }
  .stat { padding: 0 14px 0 0; }
  .stat-num { font-size: 26px; }
  .header-links { display: none; }
  .tr-featured td, .bonus-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .card-footer { flex-direction: column; align-items: stretch; }
  .btn-claim, .btn-review { text-align: center; }
  .card-tnc { margin-left: 0; }
}

/* ========== LOGO IMAGES ========== */
.casino-logo-img {
  width: auto;
  height: 48px;
  object-fit: contain;
  display: block;
}

.casino-logo-img--large {
  height: 72px;
}

/* Override the font-size on casino-logo-icon when using an image */
.casino-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.resp-logo-real {
  width: auto;
  height: 40px;
  object-fit: contain;
  display: block;
}