/* ═══════════════════════════════════════════════════════════════
   CryptoVigilante — Main Stylesheet

   Color Philosophy:
   - Dark cyber-watchdog theme (#08090f background)
   - Neon green brand accent (#00ff9d)
   - White body text with opacity layers
   - Red flags (#ef4444), amber caution (#f59e0b)
   - Clean card surfaces (#111223)
   ═══════════════════════════════════════════════════════════════ */

/* ─── 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: #00c97a;
    --emerald-500: #00ff9d;
    --emerald-400: #e02535;
    --emerald-50: #fef2f2;

    /* Gold (ratings, highlights, star ratings) */
    --gold-500: #d4a017;
    --gold-400: #00ff9d;
    --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: #00ff9d;
    --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, #0d0f1a 0%, #131624 50%, #1a1d2e 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, #0d0f1a, #131624);
    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, #131624, #1a1d2e);
}

.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); }


/* ═══════════════════════════════════════════════════════════════
   BRAND 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, #00ff9d, #00c97a);
    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, #0d0f1a, #1a1d2e);
    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, #0d0f1a, #131624);
    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, #0d0f1a 0%, #131624 50%, #1a1d2e 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, #0d0f1a, #131624);
    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, #00ff9d, #00c97a);
    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, #0d0f1a, #131624);
    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, #131624, #1a1d2e);
}

@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); }
}


/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE SYSTEM — additions for landing cards, sidebar
   improvements, and landing page article header variant.

   These classes complement the existing stylesheet and do not
   override any existing rules.
   ═══════════════════════════════════════════════════════════════ */

/* ── Section bg utility (used by articles section on homepage) ── */
.section-bg {
    background: var(--gray-50);
}

.view-all-btn-wrapper {
    text-align: center;
    margin-top: 36px;
}

/* ── Homepage landing category cards section ── */
.lp-cards-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.lp-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 8px;
}

@media (max-width: 1024px) { .lp-cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .lp-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .lp-cards-grid { grid-template-columns: 1fr; } }

.lp-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.22s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.lp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,30,42,0.04), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.lp-card:hover {
    transform: translateY(-4px);
    border-color: var(--emerald-500);
    background: var(--white);
    box-shadow: 0 10px 30px -8px rgba(196,30,42,0.15);
}

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

.lp-card-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 2px;
}

.lp-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.3;
    flex: 1;
}

.lp-card-excerpt {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-card-arrow {
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--emerald-500);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

.lp-card:hover .lp-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── Landing page article header variant (articles/view.php) ── */
.av-header--landing {
    padding: 60px 0 36px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e1a3a 100%);
    border-bottom: none;
}

.av-header--landing .av-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 14px;
}

.av-header--landing .av-updated { color: #94a3b8; }

.lp-header-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1;
}

.lp-header-intro {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    max-width: 680px;
    margin-bottom: 0;
}

/* ── Admin dashboard landing page panel cards ── */
.lp-panel { margin-bottom: 28px; }

.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 4px;
}

/* ── FAQ Schema Builder widget — tighter fit inside admin cards ── */
.faq-schema-builder-wrap {
    font-family: inherit;
}

/* Ensure FAQ builder textareas don't inherit admin override width */
#faq-schema-builder-container textarea {
    width: 100% !important;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════
   ADDITIONS — CryptoVigilante Rebuild
   Added alongside 22-file overhaul. Covers:
     • Header nav redesign (typed dropdowns, Learn, CTA)
     • Footer 4-column overhaul
     • Homepage type-filter tabs (supplement to inline styles)
     • Review page — crypto-generic section tweaks
     • Platform listing pages
     • General utility additions
   ═══════════════════════════════════════════════════════════════ */


/* ─── PLATFORM TYPE BADGES ───────────────────────────────────── */
/* Used on admin lists and public platform cards */
.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.type-badge--exchange   { background: rgba(99,102,241,.12);  color: #818cf8; border: 1px solid rgba(99,102,241,.2); }
.type-badge--sportsbook { background: rgba(16,185,129,.12);  color: #34d399; border: 1px solid rgba(16,185,129,.2); }
.type-badge--casino     { background: rgba(245,158,11,.12);  color: #fbbf24; border: 1px solid rgba(245,158,11,.2); }
.type-badge--service    { background: rgba(96,165,250,.12);  color: #93c5fd; border: 1px solid rgba(96,165,250,.2); }
.type-badge--other      { background: rgba(107,114,128,.12); color: #9ca3af; border: 1px solid rgba(107,114,128,.2); }


/* ─── NAV DROPDOWN SECTION LABELS ───────────────────────────── */
/* Already defined inline in header.php, but kept here for any
   pages that might load nav components differently */
.cv-dropdown__section-label {
    display: block;
    padding: 8px 11px 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    pointer-events: none;
    user-select: none;
}


/* ─── PLATFORM LISTING PAGES (/exchanges/ /sportsbooks/ etc.) ── */
.plp-hero {
    padding: 52px 0 36px;
    background: linear-gradient(180deg, #08090f 0%, #0d0e1c 100%);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.plp-hero__label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00ff9d;
    margin-bottom: 10px;
}
.plp-hero__h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    line-height: 1.1;
}
.plp-hero__sub {
    font-size: 0.97rem;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
    max-width: 580px;
    margin: 0;
}
.plp-hero__stats {
    display: flex;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.plp-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.plp-hero__stat-n {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.plp-hero__stat-l {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,.3);
}

/* Platform grid */
.plp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px;
    padding: 36px 0 60px;
}
@media (max-width: 700px) { .plp-grid { grid-template-columns: 1fr; } }

.plp-card {
    display: flex;
    flex-direction: column;
    background: #111223;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.plp-card:hover {
    border-color: rgba(255,255,255,.14);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.plp-card--flagged { border-left: 3px solid #ef4444; }
.plp-card--verified::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff9d, transparent);
}

.plp-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.plp-card__logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.plp-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.plp-card__logo-init { font-size: 1.1rem; font-weight: 900; color: #00ff9d; }
.plp-card__meta { flex: 1; min-width: 0; }
.plp-card__name {
    font-size: 0.97rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.plp-card__badges { display: flex; gap: 5px; flex-wrap: wrap; }

.plp-card__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.plp-card__score-val {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}
.plp-card__score-label {
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.plp-card__desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,.42);
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.plp-card__bonus {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(251,191,36,.08);
    border: 1px solid rgba(251,191,36,.15);
    border-radius: 6px;
    padding: 5px 10px;
    margin-bottom: 12px;
    display: inline-block;
}
.plp-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.plp-card__btn-review {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: all .15s;
}
.plp-card__btn-review:hover { border-color: rgba(255,255,255,.2); color: #fff; }
.plp-card__btn-visit {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    background: #00ff9d;
    border: none;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #08090f;
    text-decoration: none;
    transition: background .15s;
}
.plp-card__btn-visit:hover { background: #00e68a; }


/* ─── REVIEW PAGE — CRYPTO-GENERIC TWEAKS ────────────────────── */
/* Rating breakdown grid — trust + KYC ratings added by migration */
.review-ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
    padding: 10px 0;
}
.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    background: var(--gray-50);
    border-radius: 10px;
    text-align: center;
}
.rating-item-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.rating-item-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy-900);
    line-height: 1;
}

/* Review hero — dark gradient header */
.review-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}
.review-hero {
    background: linear-gradient(135deg, #08090f 0%, #0f1628 60%, #0e0b20 100%);
    border-radius: 0;
    padding: 40px;
    margin-bottom: 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 640px) { .review-hero { padding: 24px 16px; } }

/* Review quick-info bar */
.review-quick-info {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-top: none;
    padding: 20px 40px;
    margin-bottom: 0;
}
.quick-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    align-items: center;
}
.quick-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.quick-info-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
}
.quick-info-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-900);
}
.quick-info-value.gold    { color: var(--gold-500); }
.quick-info-value.highlight { color: #059669; }

/* Review TOC */
.review-toc {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-top: none;
    padding: 16px 40px;
    margin-bottom: 0;
}
.review-toc-title {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 10px;
}
.review-toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.review-toc-list li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--navy-900);
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
}
.review-toc-list li a:hover {
    border-color: var(--emerald-500);
    color: var(--emerald-500);
    background: var(--emerald-50);
}
.toc-number {
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gray-200);
    font-size: 0.6rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    flex-shrink: 0;
}

/* Review section blocks */
.review-section {
    padding: 36px 40px;
    border-bottom: 1px solid var(--gray-100);
    background: #fff;
}
.review-section:last-child { border-bottom: none; }
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
    flex-wrap: wrap;
}
.section-icon { font-size: 1.1rem; flex-shrink: 0; }
.section-rating-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-500);
    margin-left: auto;
    white-space: nowrap;
}
.section-content {
    font-size: 0.97rem;
    line-height: 1.78;
    color: var(--gray-700);
}
.section-content p  { margin-bottom: 18px; }
.section-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin: 24px 0 10px; }
.section-content ul, .section-content ol { padding-left: 20px; margin-bottom: 16px; }
.section-content li { margin-bottom: 6px; }
.section-content a  { color: #0891b2; text-decoration: underline; }

/* Pros/cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}
@media (max-width: 600px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-col, .cons-col {
    background: var(--gray-50);
    border-radius: 10px;
    padding: 16px 18px;
}
.pros-col { border-top: 3px solid #059669; }
.cons-col { border-top: 3px solid #ef4444; }
.pros-col h4 { color: #059669; font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; margin: 0 0 12px; }
.cons-col h4 { color: #ef4444; font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; margin: 0 0 12px; }
.pros-col ul, .cons-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.pros-col li { font-size: 0.85rem; color: var(--gray-700); padding-left: 18px; position: relative; }
.pros-col li::before { content: '✓'; position: absolute; left: 0; color: #059669; font-weight: 800; }
.cons-col li { font-size: 0.85rem; color: var(--gray-700); padding-left: 18px; position: relative; }
.cons-col li::before { content: '✗'; position: absolute; left: 0; color: #ef4444; font-weight: 800; }

/* Bonus highlight box */
.bonus-highlight {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin: 4px 0;
}
.bonus-highlight-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #059669;
    margin-bottom: 6px;
}
.bonus-highlight-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #064e3b;
    margin-bottom: 6px;
}
.bonus-highlight-code {
    display: inline-block;
    background: #fff;
    border: 2px dashed #a7f3d0;
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #059669;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.bonus-highlight-terms {
    font-size: 0.68rem;
    color: #6b7280;
    margin-top: 10px;
}

/* Mid-review CTA */
.review-mid-cta {
    padding: 20px 40px;
    border-bottom: 1px solid var(--gray-100);
    background: #fff;
}
.review-mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    flex-wrap: wrap;
}
.review-mid-cta-text { display: flex; flex-direction: column; gap: 2px; }
.review-mid-cta-label { font-size: 0.75rem; color: var(--gray-500); }
.review-mid-cta-bonus { font-size: 0.95rem; font-weight: 800; color: var(--navy-900); }
.review-mid-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s;
}
.review-mid-cta-btn:hover { opacity: 0.88; }

/* Final verdict */
.final-verdict {
    padding: 36px 40px;
    background: linear-gradient(135deg, #08090f, #0f1628);
    color: #fff;
    border-radius: 0 0 12px 12px;
}
.final-verdict h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

/* Review images lightbox */
.review-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.review-image-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--gray-200);
    transition: transform .2s, box-shadow .2s;
}
.review-image-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.review-image-item img { width: 100%; height: 140px; object-fit: cover; display: block; }
.review-image-caption { padding: 6px 8px; font-size: 0.72rem; color: var(--gray-500); background: var(--gray-50); }

/* Lightbox */
.review-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.review-lightbox.active { display: flex; }
.review-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.review-lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none; border: none;
    color: rgba(255,255,255,.7);
    font-size: 2rem; cursor: pointer;
    line-height: 1;
    transition: color .15s;
}
.review-lightbox-close:hover { color: #fff; }

/* Sticky mobile CTA bar */
.review-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(8,9,15,.97);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 12px 20px;
    z-index: 50;
    text-align: center;
    backdrop-filter: blur(8px);
}
@media (max-width: 640px) { .review-cta-bar { display: block; } }

/* Rating stars */
.stars { display: inline-flex; align-items: center; gap: 1px; color: var(--gold-500); font-size: 0.85rem; }
.rating-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-500);
}

@media (max-width: 640px) {
    .review-hero, .review-section,
    .review-quick-info, .review-toc,
    .review-mid-cta, .final-verdict { padding: 20px 16px; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .review-ratings-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ─── SCAM ALERT ARTICLE STYLES ──────────────────────────────── */
.scam-alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.2);
    color: #fca5a5;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.scam-alert-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: alertPulse 1.5s ease-in-out infinite;
}
@keyframes alertPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}


/* ─── GLOBAL UTILITY ADDITIONS ───────────────────────────────── */

/* Visually hidden (screen reader only) */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Truncate single line */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Crypto KYC / No-KYC badges for platform cards */
.badge-kyc     { background: rgba(239,68,68,.1);  color: #fca5a5; border: 1px solid rgba(239,68,68,.2);  padding: 2px 7px; border-radius: 4px; font-size: 0.65rem; font-weight: 700; }
.badge-no-kyc  { background: rgba(16,185,129,.1); color: #34d399; border: 1px solid rgba(16,185,129,.2); padding: 2px 7px; border-radius: 4px; font-size: 0.65rem; font-weight: 700; }
.badge-crypto  { background: rgba(99,102,241,.1); color: #818cf8; border: 1px solid rgba(99,102,241,.2); padding: 2px 7px; border-radius: 4px; font-size: 0.65rem; font-weight: 700; }
.badge-verified{ background: rgba(0,255,157,.08); color: #00ff9d; border: 1px solid rgba(0,255,157,.18); padding: 2px 7px; border-radius: 4px; font-size: 0.65rem; font-weight: 700; }
.badge-flagged { background: rgba(239,68,68,.08); color: #ef4444; border: 1px solid rgba(239,68,68,.18); padding: 2px 7px; border-radius: 4px; font-size: 0.65rem; font-weight: 700; }
