/* =============================================
   PADDY POWER CASINO UK — STYLE SHEET
   Colour Palette (Paddy Power Brand)
   - Primary Green:  #004B2A
   - Light Green:    #006B3C
   - Accent Gold:    #FFD700
   - Dark BG:        #00301A
   - Off-white:      #F5F5F0
   - Card BG:        #FFFFFF
   - Text Dark:      #1A1A1A
   - Text Mid:       #444444
   - Text Muted:     #777777
   ============================================= */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #F5F5F0;
  color: #1A1A1A;
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */

h1, h2, h3 {
  font-family: 'Arial Black', 'Impact', sans-serif;
  line-height: 1.15;
  color: #004B2A;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  color: #FFD700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #333;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 1.25rem;
}

.section-dark {
  background: #00301A;
  color: #F5F5F0;
}

.section-dark h2,
.section-dark h3 {
  color: #FFD700;
}

.section-dark p {
  color: #d0e8d8;
}

.section-label {
  display: inline-block;
  background: #FFD700;
  color: #004B2A;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1.15rem;
  color: #444;
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-dark .section-intro {
  color: #c4dfce;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #004B2A;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

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

.logo-main {
  font-family: 'Arial Black', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFD700;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  color: #a0c8b0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.main-nav ul li a {
  display: block;
  padding: 0.4rem 0.7rem;
  color: #c8e8d4;
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a:hover {
  background: rgba(255,215,0,0.12);
  color: #FFD700;
}

.cta-header {
  background: #FFD700;
  color: #004B2A;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.cta-header:hover {
  background: #f0ca00;
  transform: translateY(-1px);
}

/* =============================================
   TOP BANNER
   ============================================= */

.top-banner {
  background: linear-gradient(135deg, #006B3C 0%, #004B2A 100%);
  border-bottom: 2px solid #FFD700;
}

.top-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-banner-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge-new {
  background: #FFD700;
  color: #004B2A;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.top-banner-text strong {
  color: #fff;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.95rem;
}

.banner-sub {
  color: #a0c8b0;
  font-size: 0.78rem;
  font-family: 'Arial', sans-serif;
}

.cta-banner {
  background: #FFD700;
  color: #004B2A;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.5rem;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.cta-banner:hover {
  background: #f0ca00;
  transform: translateY(-1px);
}

/* =============================================
   MID BANNER
   ============================================= */

.mid-banner {
  background: #FFD700;
  padding: 0.85rem 1.25rem;
}

.mid-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.mid-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mid-banner-text span {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: #004B2A;
}

.mid-banner-text strong {
  font-family: 'Arial Black', sans-serif;
  font-size: 1rem;
  color: #004B2A;
}

.cta-banner-green {
  background: #004B2A;
  color: #FFD700;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.6rem;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.cta-banner-green:hover {
  background: #003820;
  transform: translateY(-1px);
}

/* =============================================
   BUTTONS
   ============================================= */

.cta-primary {
  background: #FFD700;
  color: #004B2A;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2.2rem;
  font-family: 'Arial Black', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}

.cta-primary:hover {
  background: #f0ca00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.35);
}

.cta-primary.cta-large {
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
}

.cta-secondary {
  display: inline-block;
  color: #FFD700;
  border: 2px solid rgba(255,215,0,0.5);
  border-radius: 8px;
  padding: 0.85rem 1.8rem;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cta-secondary:hover {
  border-color: #FFD700;
  color: #fff;
}

.cta-card {
  display: block;
  width: 100%;
  background: #FFD700;
  color: #004B2A;
  border: none;
  border-radius: 6px;
  padding: 0.8rem;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  margin-top: 1.2rem;
  transition: background 0.2s, transform 0.15s;
}

.cta-card:hover {
  background: #f0ca00;
  transform: translateY(-1px);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  background: linear-gradient(135deg, #004B2A 0%, #002A18 60%, #001510 100%);
  padding: 5rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.hero-eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFD700;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.25rem;
  color: #d0e8d8;
  margin: 0.75rem 0 1rem;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.hero-desc {
  color: #a8ceb8;
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars span {
  color: #FFD700;
  font-size: 1.4rem;
}

.stars .half-star {
  opacity: 0.45;
}

.rating-num {
  font-family: 'Arial Black', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFD700;
}

.rating-count {
  font-size: 0.88rem;
  color: #90b8a0;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #90b8a0;
  font-size: 0.82rem;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* HERO VISUAL CARD */

.casino-card-visual {
  background: linear-gradient(160deg, #006B3C, #003820);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 16px;
  padding: 1.75rem;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.visual-title {
  font-family: 'Arial Black', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFD700;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stat-row:last-of-type {
  border-bottom: none;
}

.stat-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: #90b8a0;
}

.stat-val {
  font-family: 'Arial Black', sans-serif;
  font-size: 0.9rem;
  color: #FFD700;
  font-weight: 900;
}

/* =============================================
   REVIEW INTRO
   ============================================= */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.intro-text p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.author-box {
  background: #fff;
  border: 1px solid #e0ead4;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,75,42,0.07);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.75rem;
  border: 3px solid #FFD700;
}

.author-avatar svg {
  width: 60px;
  height: 60px;
  display: block;
}

.author-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.author-info strong {
  font-family: 'Arial Black', sans-serif;
  font-size: 1rem;
  color: #004B2A;
}

.author-info span {
  font-size: 0.82rem;
  color: #777;
}

.author-since {
  color: #006B3C !important;
  font-weight: 600;
}

.author-note {
  background: #f0f8f2;
  border-left: 3px solid #FFD700;
  padding: 0.75rem;
  font-size: 0.88rem;
  color: #444;
  font-style: italic;
  border-radius: 0 4px 4px 0;
  line-height: 1.5;
}

/* =============================================
   BONUS SECTION
   ============================================= */

.bonus-hero-card {
  background: linear-gradient(135deg, #FFD700 0%, #f0ca00 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 12px 40px rgba(255,215,0,0.3);
}

.bonus-badge {
  display: inline-block;
  background: #004B2A;
  color: #FFD700;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.bonus-amount {
  font-family: 'Arial Black', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #004B2A;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bonus-plus {
  font-family: 'Arial Black', sans-serif;
  font-size: 1.1rem;
  color: #004B2A;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.bonus-terms {
  font-size: 0.8rem;
  color: #00301A;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.promo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 1.5rem;
}

.promo-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.promo-card h3 {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.promo-card p {
  color: #c0dcc8;
  font-size: 0.9rem;
  margin: 0;
}

/* =============================================
   TABLES
   ============================================= */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: #fff;
}

.data-table thead tr {
  background: #004B2A;
}

.data-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  color: #FFD700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.data-table td {
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: #333;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.data-table tbody tr:nth-child(even) td {
  background: #f8fdf9;
}

.data-table tbody tr:hover td {
  background: #f0faf2;
}

.verdict-ok {
  color: #006B3C;
  font-weight: 700;
  white-space: nowrap;
}

.verdict-warn {
  color: #c07800;
  font-weight: 700;
  white-space: nowrap;
}

/* =============================================
   GAMES SECTION
   ============================================= */

.games-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.game-category-card {
  background: #fff;
  border: 1px solid #e0ead4;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(0,75,42,0.06);
}

.game-cat-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: 1rem;
}

.game-count {
  display: inline-block;
  background: #FFD700;
  color: #004B2A;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.game-category-card p {
  font-size: 0.92rem;
  color: #444;
  margin: 0;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 2.5rem;
}

.provider-chip {
  background: #004B2A;
  color: #FFD700;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}

/* =============================================
   BANKING
   ============================================= */

.banking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.bank-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 1.5rem;
}

.bank-icon svg {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 0.75rem;
}

.bank-card h3 {
  color: #FFD700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.bank-card p {
  color: #c0dcc8;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.bank-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bank-meta span {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFD700;
  background: rgba(255,215,0,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* =============================================
   MOBILE SECTION
   ============================================= */

.mobile-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.mobile-info h3 {
  margin-top: 1.5rem;
}

.mobile-info h3:first-child {
  margin-top: 0;
}

.mobile-checklist {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.92rem;
  color: #333;
}

.check-item.yes::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #006B3C;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* PHONE MOCKUP */

.phone-mockup {
  width: 230px;
  background: #1A1A1A;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 2px #333;
  flex-shrink: 0;
}

.phone-screen {
  background: #004B2A;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #003820;
  padding: 0.75rem 1rem;
}

.mock-logo {
  font-family: 'Arial Black', sans-serif;
  font-size: 0.85rem;
  color: #FFD700;
  font-weight: 900;
}

.mock-balance {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.mock-banner {
  background: rgba(255,215,0,0.15);
  color: #FFD700;
  font-size: 0.78rem;
  text-align: center;
  padding: 0.5rem;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
}

.mock-games {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  flex: 1;
}

.mock-game {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: #d0e8d8;
}

.mock-nav {
  display: flex;
  justify-content: space-around;
  padding: 0.65rem;
  background: #003820;
  border-top: 1px solid rgba(255,215,0,0.15);
}

.mock-nav span {
  font-size: 1.2rem;
}

/* =============================================
   SAFETY SECTION
   ============================================= */

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.safety-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 10px;
  padding: 1.5rem;
}

.safety-icon svg {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 0.75rem;
}

.safety-card h3 {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.safety-card p {
  color: #c0dcc8;
  font-size: 0.88rem;
  margin: 0;
}

.rg-tools {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.rg-tool {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

.rg-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.rg-tool strong {
  display: block;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.95rem;
  color: #FFD700;
  margin-bottom: 0.25rem;
}

.rg-tool p {
  color: #c0dcc8;
  font-size: 0.88rem;
  margin: 0;
}

/* =============================================
   SUPPORT SECTION
   ============================================= */

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.support-channel {
  background: #fff;
  border: 1px solid #e0ead4;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(0,75,42,0.06);
}

.support-ch-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: 1rem;
}

.support-meta {
  display: inline-block;
  background: #004B2A;
  color: #FFD700;
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* =============================================
   VERDICT SECTION
   ============================================= */

.verdict-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.verdict-col {
  border-radius: 12px;
  overflow: hidden;
}

.verdict-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-family: 'Arial Black', sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.verdict-header svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.pros .verdict-header.pros-h {
  background: #e8f8ee;
  color: #004B2A;
}

.cons .verdict-header.cons-h {
  background: #fdecea;
  color: #8B0000;
}

.verdict-col ul {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pros ul {
  background: #f5fcf7;
  border: 1px solid #c8e8d0;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.cons ul {
  background: #fff8f7;
  border: 1px solid #f0c8c8;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.pros ul li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.92rem;
  color: #1A1A1A;
  line-height: 1.45;
}

.pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #006B3C;
  font-weight: 900;
}

.cons ul li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.92rem;
  color: #1A1A1A;
  line-height: 1.45;
}

.cons ul li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #cc3333;
  font-weight: 900;
}

.suited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.suited-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 1.5rem;
}

.suited-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
}

.suited-card h3 {
  color: #FFD700;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.suited-card p {
  color: #c0dcc8;
  font-size: 0.88rem;
  margin: 0;
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
  background: #F5F5F0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid #d8e8d0;
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #d8e8d0;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #004B2A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
  line-height: 1.35;
}

.faq-question:hover {
  background: #f0faf2;
}

.faq-item.open .faq-question {
  background: #004B2A;
  color: #FFD700;
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.25s;
  font-size: 0.7rem;
  opacity: 0.7;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: #fafdf8;
  border-top: 1px solid #e8f0e4;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  padding-top: 1rem;
}

/* =============================================
   FINAL CTA
   ============================================= */

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 1rem;
}

.final-cta-box {
  background: rgba(255,215,0,0.08);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-offer-text {
  font-family: 'Arial Black', sans-serif;
  font-size: 1.15rem;
  color: #FFD700;
  text-align: center;
}

.cta-disclaimer {
  font-size: 0.78rem;
  color: #80a890;
  text-align: center;
  max-width: 580px;
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: #001A0F;
  color: #a0c8b0;
  padding-top: 3.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-wrap svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-logo-main {
  display: block;
  font-family: 'Arial Black', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #FFD700;
}

.footer-logo-sub {
  display: block;
  font-size: 0.72rem;
  color: #80a890;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6a9a7a;
  margin: 0;
}

.footer-nav h3,
.footer-rg h3 {
  font-family: 'Arial Black', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFD700;
  margin-bottom: 1rem;
}

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

.footer-nav ul li a {
  font-size: 0.88rem;
  color: #80a890;
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: #FFD700;
}

.footer-rg p {
  font-size: 0.85rem;
  color: #6a9a7a;
  margin-bottom: 0.75rem;
}

.rg-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.rg-links li {
  font-size: 0.82rem;
  color: #6a9a7a;
  line-height: 1.45;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #FFD700;
  color: #004B2A;
  font-family: 'Arial Black', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  border-radius: 50%;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #4a6a5a;
  margin-bottom: 0.25rem;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .casino-card-visual {
    max-width: 100%;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .author-box {
    max-width: 380px;
  }

  .verdict-split {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

  .mobile-split {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */

@media (max-width: 640px) {
  .section {
    padding: 3rem 1rem;
  }

  .site-header .main-nav {
    display: none;
  }

  .header-inner {
    height: 58px;
  }

  .top-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .top-banner-text {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .hero {
    padding: 3rem 1rem 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .cta-primary,
  .hero-btns .cta-secondary {
    text-align: center;
  }

  .hero-trust {
    gap: 0.75rem;
  }

  .trust-item {
    font-size: 0.75rem;
  }

  .bonus-hero-card {
    padding: 1.75rem 1rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .games-overview-grid {
    grid-template-columns: 1fr;
  }

  .banking-grid {
    grid-template-columns: 1fr;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .suited-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    grid-column: auto;
  }

  .mid-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .final-cta-box {
    padding: 1.5rem 1rem;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 1rem 1.1rem;
  }

  .faq-answer {
    padding: 0 1.1rem 1rem;
  }

  .mobile-split {
    grid-template-columns: 1fr;
  }
}
