/* ═══════════════════════════════════════════════════════════════
   Top Online Bookmakers — Main Stylesheet
   
   Color Philosophy:
   - Bold crimson red header & CTAs (#c41e2a, #a31920)
   - Clean white body backgrounds
   - Dark charcoal for text (#1a1a2e, #2d2d44)
   - Light warm grays for cards & sections (#f5f5f8, #eaeaf0)
   - Gold accents for ratings & highlights (#d4a017, #e6b422)
   - Professional, trustworthy sports-betting aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ──────────────────────────────────────────── */
:root {
    /* Primary palette — Crimson Red */
    --navy-900: #1a1a2e;
    --navy-800: #2d2d44;
    --navy-700: #3d3d5c;
    --navy-600: #52526e;

    /* Red (primary brand, CTAs, headers) */
    --emerald-600: #a31920;
    --emerald-500: #c41e2a;
    --emerald-400: #e02535;
    --emerald-50: #fef2f2;

    /* Gold (ratings, highlights, star ratings) */
    --gold-500: #d4a017;
    --gold-400: #e6b422;
    --gold-300: #f0ca4d;
    --gold-100: #fdf8e8;

    /* Neutrals — warm-tinted */
    --white: #ffffff;
    --gray-50: #f5f5f8;
    --gray-100: #eaeaf0;
    --gray-200: #d5d5e0;
    --gray-300: #b0b0c2;
    --gray-400: #8888a0;
    --gray-500: #6a6a82;
    --gray-600: #4e4e66;
    --gray-700: #3a3a52;
    --gray-800: #2d2d44;
    --gray-900: #1a1a2e;

    /* Accent */
    --indigo-500: #818cf8;
    --indigo-600: #6366f1;
    --red-500: #c41e2a;
    --red-50: #fef2f2;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Layout */
    --container-max: 1200px;
    --header-height: 70px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.10);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
    --shadow-card-hover: 0 12px 30px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s var(--ease-out);
}

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION (Homepage)
   ═══════════════════════════════════════════════════════════════ */
.hero {
    background: var(--white);
    color: var(--navy-900);
    padding: 60px 20px 50px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--navy-900);
}

.hero h1 .highlight {
    color: var(--emerald-500);
}

.hero h1 .highlight-orange {
    color: var(--gold-500);
}

.hero p {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 0 35px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─── HERO LIVE TICKER STRIP ─────────────────────────────────── */
.hero-ticker {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}

.hero-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.hero-ticker-item .ticker-value {
    font-weight: 800;
    color: var(--emerald-500);
    font-size: 1.1rem;
}

/* ─── FLOATING SPORT ICONS (Hero decoration) ─────────────────── */
.hero-floating-icons {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.04;
    animation: floatDrift linear infinite;
}

@keyframes floatDrift {
    0%   { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 0.04; }
    90%  { opacity: 0.04; }
    100% { transform: translateY(-100px) translateX(30px) rotate(180deg); opacity: 0; }
}

.floating-icon:nth-child(1) { left: 8%;  animation-duration: 18s; animation-delay: 0s; font-size: 1.8rem; }
.floating-icon:nth-child(2) { left: 20%; animation-duration: 22s; animation-delay: 3s; font-size: 2.2rem; }
.floating-icon:nth-child(3) { left: 35%; animation-duration: 16s; animation-delay: 6s; font-size: 1.5rem; }
.floating-icon:nth-child(4) { left: 55%; animation-duration: 20s; animation-delay: 2s; font-size: 2rem; }
.floating-icon:nth-child(5) { left: 70%; animation-duration: 24s; animation-delay: 5s; font-size: 1.6rem; }
.floating-icon:nth-child(6) { left: 85%; animation-duration: 19s; animation-delay: 8s; font-size: 2.1rem; }
.floating-icon:nth-child(7) { left: 45%; animation-duration: 21s; animation-delay: 1s; font-size: 1.4rem; }
.floating-icon:nth-child(8) { left: 92%; animation-duration: 17s; animation-delay: 4s; font-size: 1.9rem; }


/* ═══════════════════════════════════════════════════════════════
   PAGE HEADERS (Interior pages)
   ═══════════════════════════════════════════════════════════════ */
.page-header {
    background: linear-gradient(150deg, #c41e2a 0%, #a31920 50%, #8b1218 100%);
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-primary,
.btn-play,
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #c41e2a, #a31920);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    box-shadow: 0 4px 14px rgba(196, 30, 42, 0.25);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover,
.btn-play:hover,
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 42, 0.35);
    background: linear-gradient(135deg, #a31920, #8b1218);
}

.btn-primary:active,
.btn-play:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(196, 30, 42, 0.2);
}

/* Secondary */
.btn-secondary,
.btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy-900);
    padding: 14px 28px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
}

.btn-secondary:hover,
.btn-review:hover {
    border-color: var(--emerald-500);
    background: var(--emerald-50);
    color: var(--emerald-500);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 30, 42, 0.08);
}

/* Ghost */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }


/* ═══════════════════════════════════════════════════════════════
   SPORTSBOOK CARDS
   ═══════════════════════════════════════════════════════════════ */
.site-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.site-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c41e2a, #e6b422);
    opacity: 0;
    transition: opacity 0.3s;
}

.site-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.site-card:hover::before { opacity: 1; }

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.site-rank {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 20px;
}

.featured-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-500);
    background: var(--gold-100);
    padding: 4px 10px;
    border-radius: 20px;
}

.site-logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.site-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 1px solid var(--gray-200);
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.logo-placeholder {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-400);
}

.site-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

/* Star rating */
.site-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars { display: flex; gap: 1px; }
.star { font-size: 0.9rem; }
.star-full { color: var(--gold-400); }
.star-half { color: var(--gold-400); opacity: 0.6; }
.star-empty { color: var(--gray-300); }
.rating-value { font-size: 0.85rem; font-weight: 700; color: var(--gray-600); }

/* Badges */
.badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }

.us-flag-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: 2px solid var(--white);
    border-radius: 6px;
    padding: 1px 5px;
    z-index: 2;
}

.us-flag-text { font-size: 0.6rem; font-weight: 800; color: var(--white); letter-spacing: 0.5px; }

.crypto-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #d97706;
    background: var(--gold-100);
    padding: 3px 8px;
    border-radius: 6px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 3px 8px;
    border-radius: 6px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.availability-badge.allowed { color: #059669; background: #ecfdf5; }
.availability-badge.blocked { color: var(--red-500); background: var(--red-50); }

.site-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.site-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-600); }
.feature-icon { color: var(--emerald-500); font-weight: 700; flex-shrink: 0; }

.site-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.site-actions .btn-play,
.site-actions .btn-primary {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.site-actions .btn-review,
.site-actions .btn-secondary {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.9rem;
}


/* ═══════════════════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════════════════ */
.filters {
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin: -30px auto 40px;
    max-width: var(--container-max);
    position: relative;
    z-index: 10;
}

.filter-compact { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.filter-label-inline { font-size: 0.9rem; font-weight: 600; color: var(--gray-500); }

.filter-select-compact {
    padding: 10px 36px 10px 14px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 140px;
    font-family: var(--font-primary);
}

.filter-select-compact:hover { border-color: var(--gray-300); }
.filter-select-compact:focus { outline: none; border-color: var(--emerald-500); box-shadow: 0 0 0 3px rgba(196, 30, 42, 0.1); }

.filter-reset {
    padding: 10px 18px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-primary);
}

.filter-reset:hover { background: var(--gray-200); color: var(--gray-700); }

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--emerald-50);
    color: var(--emerald-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(196, 30, 42, 0.2);
}

.filter-pill-remove { cursor: pointer; font-size: 1rem; line-height: 1; opacity: 0.6; }
.filter-pill-remove:hover { opacity: 1; }


/* ═══════════════════════════════════════════════════════════════
   GRIDS & LAYOUTS
   ═══════════════════════════════════════════════════════════════ */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .sites-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sites-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   ARTICLE CARDS
   ═══════════════════════════════════════════════════════════════ */
.article-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--ease-out);
    display: block;
    color: inherit;
    border: 1px solid var(--gray-100);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(150deg, #c41e2a, #8b1218);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.article-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.article-image img { width: 100%; height: 100%; object-fit: cover; }

.article-content { padding: 24px; }

.article-category {
    display: inline-block;
    background: var(--emerald-50);
    color: var(--emerald-600);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-excerpt {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--gray-400);
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

.meta-item { display: flex; align-items: center; gap: 5px; }


/* ═══════════════════════════════════════════════════════════════
   TRUST SIGNALS / STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 30px 20px;
}

.trust-stats { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat-value { font-size: 1.8rem; font-weight: 900; color: var(--navy-900); letter-spacing: -0.02em; }
.trust-stat-value .accent { color: var(--emerald-500); }
.trust-stat-label { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; margin-top: 2px; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 80px 20px; }

.section-dark {
    background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: var(--white);
}

.section-header { text-align: center; margin-bottom: 50px; }

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p { color: rgba(255, 255, 255, 0.7); }

/* How It Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.how-step { text-align: center; padding: 30px; }

.how-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c41e2a, #a31920);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 18px;
    box-shadow: 0 4px 14px rgba(196, 30, 42, 0.3);
}

.how-step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 0.92rem; line-height: 1.6; }
.section-dark .how-step p { color: rgba(255, 255, 255, 0.65); }


/* ═══════════════════════════════════════════════════════════════
   REVIEW PAGE — Expert Reviews
   ═══════════════════════════════════════════════════════════════ */
.review-hero {
    background: linear-gradient(150deg, #c41e2a 0%, #a31920 50%, #8b1218 100%);
    padding: 50px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.review-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.review-hero-content { position: relative; z-index: 1; }

.rating-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(230,180,34,0.4);
    color: #fbbf24;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.review-section {
    padding: 35px 40px;
    border-bottom: 1px solid var(--gray-100);
}

.review-section:last-child { border-bottom: none; }

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c41e2a, #a31920);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
}

.section-content {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.section-content p { margin-bottom: 14px; }

.section-content a {
    color: var(--emerald-500);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-content a:hover { color: var(--gold-500); }

/* Review ratings grid */
.review-ratings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 24px 40px;
    background: var(--gray-50);
}

.rating-item { text-align: center; padding: 16px 10px; }

.rating-item-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.rating-item-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--emerald-500);
}

.rating-item-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.rating-item-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #c41e2a, #e6b422);
    border-radius: 2px;
    transition: width 0.6s var(--ease-out);
}

/* Pros/Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

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

.pros-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.cons-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.pros-box h3 { color: #059669; font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.cons-box h3 { color: #dc2626; font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.icon-check { color: #059669; margin-right: 4px; }
.icon-cross { color: #dc2626; margin-right: 4px; }
.empty-state { color: var(--gray-400); font-size: 0.9rem; }

/* Review mid-page CTA */
.review-mid-cta { padding: 0 40px; }
.review-mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border: 2px solid #fcd34d;
    border-radius: var(--radius-lg);
    padding: 20px 28px;
}
.review-mid-cta-text { font-size: 0.92rem; color: var(--gray-600); }
.review-mid-cta-bonus { font-size: 1.05rem; font-weight: 800; color: var(--navy-900); }
.review-mid-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #c41e2a, #a31920);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(196,30,42,0.25);
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.review-mid-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,30,42,0.35);
    background: linear-gradient(135deg, #a31920, #8b1218);
}

@media (max-width: 640px) {
    .review-mid-cta { padding: 0 16px; }
    .review-mid-cta-inner { flex-direction: column; text-align: center; padding: 18px 20px; }
    .review-mid-cta-btn { width: 100%; justify-content: center; }
}

/* Final Verdict */
.final-verdict {
    background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.final-verdict::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(196, 30, 42, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(230, 180, 34, 0.08) 0%, transparent 50%);
}

.final-verdict > * { position: relative; z-index: 1; }

.final-verdict h2 {
    color: var(--gold-400);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.final-verdict p,
.final-verdict li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.final-verdict strong,
.final-verdict a { color: var(--gold-400); }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-section p { font-size: 0.9rem; line-height: 1.6; color: rgba(255, 255, 255, 0.5); }
.footer-section a { display: block; font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); padding: 4px 0; transition: color 0.2s; }
.footer-section a:hover { color: var(--gold-400); }

.footer-bottom { text-align: center; padding-top: 24px; max-width: var(--container-max); margin: 0 auto; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.35); }

.responsible-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}


/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-400); }
.text-emerald { color: var(--emerald-500); }
.text-muted { color: var(--gray-500); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 968px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .how-it-works-grid { grid-template-columns: 1fr; gap: 20px; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .review-hero, .review-section, .final-verdict { padding: 24px 20px; }
    .trust-stats { gap: 30px; }
}

@media (max-width: 640px) {
    .hero { padding: 50px 20px 60px; }
    .page-header { padding: 40px 20px; }
    .filter-compact { flex-direction: column; align-items: stretch; }
    .filter-select-compact { width: 100%; }
    .footer-content { grid-template-columns: 1fr; gap: 24px; }
    .trust-stats { flex-direction: column; gap: 20px; }
    .review-ratings-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 50px 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.article-body.fade-in-up,
.article-body-wrapper .fade-in-up {
    opacity: 1;
    transform: none;
}

.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeletonShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .floating-icon { display: none; }
}

@media (prefers-contrast: high) {
    .btn-primary, .btn-secondary, .btn-ghost { border: 2px solid currentColor; }
    .site-card { border: 2px solid var(--gray-300); }
}
