/* ==========================================================================
   Galerie de Mesure - Main Stylesheet
   Design System: affinityonerrol.com template
   Dark navy + orange accent theme
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */

:root {
    --bg: #0A1628;
    --btn-from: #FF6B35;
    --btn-to: #E85D26;
    --card-bg: #111D32;
    --text-dark: #F1F2F5;
    --text-gray: #9CA8CB;
    --border: #1E3050;
    --green-light: #0F2533;
    --green-border: #1E4A6B;
    --red-light: #2A1215;
    --red-border: #6B2020;
    --navy-deep: #0D1B2A;
    --navy-mid: #1B2D45;
    --accent: #00BFA6;
    --gold: #FF6B35;
    --gold-light: #FF8F66;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 110px;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

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

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* ==========================================================================
   3. SKIP LINK (ACCESSIBILITY)
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--btn-from);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   4. CONTAINER
   ========================================================================== */

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

@media (min-width: 769px) {
    .container {
        padding: 0 2rem;
    }
}

/* ==========================================================================
   5. NAVBAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #06101F;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #1E3050;
    z-index: 1000;
    height: 110px;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand .brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FF6B35;
    text-decoration: none;
    line-height: 1.2;
}

.navbar-brand .brand-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: #9CA8CB;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-brand .brand-emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* ----- Navigation Links ----- */

.navbar-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.navbar-nav > a {
    color: #9CA8CB;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.navbar-nav > a:hover {
    color: #FF6B35;
}

/* ----- Hamburger Toggle ----- */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    margin-left: auto;
    margin-right: 2.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FF6B35;
    margin: 5px 0;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Dropdown Navigation ----- */

.nav-dropdown {
    position: relative;
    padding: 0.5rem 0;
}

.nav-dropdown > a {
    color: #9CA8CB;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-block;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-dropdown > a:hover {
    color: #FF6B35;
}

.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 0.7rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0A1628;
    border: 1px solid #1E3050;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #9CA8CB;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #111D32;
    color: #FF6B35;
}

/* ----- Mobile Navigation ----- */

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .navbar-nav {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #06101F;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        overflow-y: auto;
        z-index: 1999;
        border-top: 1px solid #1E3050;
    }

    .navbar-nav.open {
        display: flex;
    }

    .navbar-nav > a {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid #1E3050;
    }

    .nav-dropdown {
        padding: 0;
    }

    .nav-dropdown > a {
        display: block;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid #1E3050;
    }

    .nav-dropdown > a::after {
        float: right;
    }

    .dropdown-menu {
        display: none;
        position: static;
        transform: none;
        border-radius: 0;
        min-width: 100%;
        box-shadow: none;
        border: none;
        background: #0A1628;
        padding: 0;
        border-bottom: 1px solid #1E3050;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.65rem 2.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #111D32;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .navbar-container {
        padding: 0 1rem;
    }
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

.hero {
    padding: 2rem;
    background: linear-gradient(135deg, #06101F 0%, #0D1B2A 50%, #06101F 100%);
    border-radius: 16px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(30deg, transparent 40%, rgba(255, 107, 53, 0.08) 40%, rgba(255, 107, 53, 0.08) 40.5%, transparent 40.5%),
        linear-gradient(150deg, transparent 30%, rgba(0, 191, 166, 0.06) 30%, rgba(0, 191, 166, 0.06) 30.5%, transparent 30.5%),
        linear-gradient(60deg, transparent 55%, rgba(255, 107, 53, 0.07) 55%, rgba(255, 107, 53, 0.07) 55.5%, transparent 55.5%),
        linear-gradient(120deg, transparent 20%, rgba(0, 191, 166, 0.05) 20%, rgba(0, 191, 166, 0.05) 20.5%, transparent 20.5%),
        linear-gradient(170deg, transparent 65%, rgba(255, 107, 53, 0.06) 65%, rgba(255, 107, 53, 0.06) 65.5%, transparent 65.5%),
        linear-gradient(45deg, transparent 45%, rgba(0, 191, 166, 0.04) 45%, rgba(0, 191, 166, 0.04) 45.5%, transparent 45.5%),
        linear-gradient(100deg, transparent 75%, rgba(255, 107, 53, 0.07) 75%, rgba(255, 107, 53, 0.07) 75.5%, transparent 75.5%),
        linear-gradient(10deg, transparent 10%, rgba(0, 191, 166, 0.05) 10%, rgba(0, 191, 166, 0.05) 10.5%, transparent 10.5%);
    pointer-events: none;
    z-index: 0;
}

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

/* ----- Hero Layout (flexbox with floating card) ----- */

.hero-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

/* ----- Hero Headings ----- */

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1 span.gold,
h1 .gold,
.gold {
    color: #FF6B35;
}

h1 .accent {
    color: var(--accent);
}

/* ----- Hero Authors ----- */

.hero-authors {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.hero-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(17, 29, 50, 0.7);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
}

.hero-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.hero-author-info {
    display: flex;
    flex-direction: column;
}

.hero-author-name {
    color: #F1F2F5;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-author-name a {
    color: #F1F2F5;
    text-decoration: none;
}

.hero-author-name a:hover {
    color: #FF6B35;
}

.hero-author-role {
    color: #9CA8CB;
    font-size: 0.68rem;
    line-height: 1.3;
}

/* ----- Byline ----- */

.byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #9CA8CB;
    line-height: 1.6;
}

.byline a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.byline a:hover {
    color: #FF6B35;
}

.byline-sep {
    color: #1E3050;
    margin: 0 0.5rem;
}

.byline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.5rem;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.byline-gold {
    color: #FF6B35;
    text-decoration: none;
}

.byline-gold:hover {
    text-decoration: underline;
}

/* ----- Author Meta (legacy) ----- */

.author-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: #FFFFFF;
}

.expert-badge {
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.last-updated {
    color: #9CA3AF;
}

/* ----- Intro Text ----- */

.intro-text {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* ----- Hero Pick Card (floating sidebar) ----- */

.hero-pick-card {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #0A1628 0%, #111D32 50%, #0D1B2A 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.35);
    box-shadow:
        0 0 30px rgba(255, 107, 53, 0.2),
        0 0 60px rgba(0, 191, 166, 0.08),
        0 15px 40px rgba(0, 0, 0, 0.6);
    padding: 1rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    animation: card-float 4s ease-in-out infinite;
    transition: all 0.3s;
}

.hero-pick-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.3),
        0 0 80px rgba(0, 191, 166, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.7);
}

.hero-pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6B35, #00BFA6, #FF6B35, transparent);
    background-size: 400px 2px;
    animation: border-shimmer 3s linear infinite;
}

.hero-pick-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% -20%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-pick-card > * {
    position: relative;
    z-index: 1;
}

.hero-pick-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #FF6B35, #FF8F66, #FF6B35);
    background-size: 200% 100%;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    animation: btn-shimmer 3s infinite;
}

.hero-pick-logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
    background: #fff;
    transition: all 0.3s;
}

.hero-pick-card:hover .hero-pick-logo-wrap {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.hero-pick-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 4px;
}

.hero-pick-name {
    color: #F1F5F2;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-pick-award {
    color: #FF6B35;
    font-size: 0.72rem;
    font-weight: 500;
}

.hero-pick-bonus {
    color: #00BFA6;
    font-size: 0.95rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 191, 166, 0.4);
    animation: bonus-glow 2s ease-in-out infinite;
}

.hero-pick-stats {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.hero-pick-stat-val {
    color: #FF6B35;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-pick-stat-label {
    color: #6B7F9C;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-pick-cta {
    display: block;
    background: linear-gradient(135deg, #FF6B35, #FF8F66, #FF6B35);
    background-size: 200% 100%;
    color: #FFFFFF;
    padding: 9px 0;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
    transition: all 0.3s;
    animation: btn-shimmer 3s infinite;
    width: 100%;
    text-align: center;
}

.hero-pick-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.5);
    color: #FFFFFF;
}

.hero-pick-disclaimer {
    color: #6B7F9C;
    font-size: 0.58rem;
}

/* ==========================================================================
   7. COMPARISON TABLE
   ========================================================================== */

.table-wrapper {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0;
}

.table-wrapper h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.comparison-table {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid #1E3050;
}

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

.comparison-table thead {
    position: relative;
}

.comparison-table thead::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cdefs%3E%3Cstyle%3E.g%7Bfill:none;stroke:%23ff6b35;opacity:0.12%7D%3C/style%3E%3C/defs%3E%3Cpath class='g' stroke-width='1' d='M60 5L115 60L60 115L5 60Z'/%3E%3Cpath class='g' stroke-width='0.7' d='M60 20L100 60L60 100L20 60Z'/%3E%3Cpath class='g' stroke-width='0.5' d='M60 35L85 60L60 85L35 60Z'/%3E%3Cpath class='g' stroke-width='0.7' d='M60 0V120M0 60H120'/%3E%3Cpath class='g' stroke-width='0.5' d='M0 0L120 120M120 0L0 120'/%3E%3Ccircle class='g' cx='60' cy='60' r='8' stroke-width='1'/%3E%3Ccircle class='g' cx='60' cy='60' r='3' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    pointer-events: none;
}

.comparison-table th {
    background: linear-gradient(135deg, #0D1B2A, #1B2D45);
    color: #FF6B35;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
}

thead th.bonus-cell {
    color: #FF6B35 !important;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ----- Table Cell Types ----- */

.rank-cell {
    width: 28px;
    padding-left: 10px;
    padding-right: 4px;
    text-align: center;
    font-weight: bold;
    color: var(--btn-from);
    font-size: 0.85rem;
}

.logo-cell {
    width: 160px;
    padding-left: 4px;
}

.logo-cell img {
    width: 150px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    padding: 4px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.logo-cell img:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 107, 53, 0.25);
}

.bonus-cell {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.cta-cell {
    text-align: center;
    padding: 6px 4px;
}

.award-cell {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.rating-cell {
    font-weight: 700;
    color: var(--btn-from);
}

.games-cell {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ----- CTA Button ----- */

.cta-button {
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* ----- Table Explicit Overrides ----- */

thead {
    display: table-header-group;
}

tbody {
    display: table-row-group;
}

tr {
    display: table-row;
}

td,
th {
    display: table-cell;
}

.comparison-table .bonus-cell,
table .bonus-cell {
    font-size: 0.875rem;
}

.comparison-table .cta-button,
table .cta-cell .cta-button,
table .cta-cell a {
    font-size: 0.875rem;
}

/* ----- Hide on Mobile Utility ----- */

.hide-on-mobile {
    display: table-cell;
}

/* ----- Comparison Table Mobile ----- */

@media (max-width: 768px) {
    .table-wrapper {
        padding: 0 !important;
    }

    .table-wrapper h2 {
        padding: 0 0.75rem;
    }

    .comparison-table {
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
    }

    .logo-cell img {
        width: 100px !important;
        height: 50px !important;
        object-fit: contain;
        padding: 4px !important;
    }

    .logo-cell {
        width: 110px !important;
        padding: 8px 4px !important;
    }

    .rank-cell {
        width: 20px !important;
        padding: 8px 4px !important;
        font-size: 0.8rem !important;
    }

    .bonus-cell {
        font-size: 0.78rem !important;
        line-height: 1.4 !important;
        padding: 8px 6px !important;
    }

    .cta-button {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
    }

    .cta-cell {
        padding: 8px 6px !important;
    }

    .comparison-table td {
        padding: 10px 4px !important;
    }

    .comparison-table th {
        padding: 10px 4px !important;
        font-size: 0.75rem !important;
    }

    .hide-on-mobile {
        display: none !important;
    }
}

/* ==========================================================================
   8. REVIEW CARDS
   ========================================================================== */

.review-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid #1E3050;
}

/* ----- Review Header (5-col grid) ----- */

.review-header {
    background: linear-gradient(135deg, #0D1B2A, #1B2D45, #0D1B2A);
    border-bottom: 2px solid rgba(255, 107, 53, 0.4);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: auto auto 1fr 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.3rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.review-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cdefs%3E%3Cstyle%3E.g%7Bfill:none;stroke:%23ff6b35;opacity:0.15%7D%3C/style%3E%3C/defs%3E%3Cpath class='g' stroke-width='1' d='M60 5L115 60L60 115L5 60Z'/%3E%3Cpath class='g' stroke-width='0.7' d='M60 20L100 60L60 100L20 60Z'/%3E%3Cpath class='g' stroke-width='0.5' d='M60 35L85 60L60 85L35 60Z'/%3E%3Cpath class='g' stroke-width='0.7' d='M60 0V120M0 60H120'/%3E%3Cpath class='g' stroke-width='0.5' d='M0 0L120 120M120 0L0 120'/%3E%3Ccircle class='g' cx='60' cy='60' r='8' stroke-width='1'/%3E%3Ccircle class='g' cx='60' cy='60' r='3' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    pointer-events: none;
    z-index: 0;
}

.review-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg,
        transparent 0px, transparent 4px,
        rgba(255, 107, 53, 0.25) 4px, rgba(255, 107, 53, 0.25) 8px,
        transparent 8px, transparent 16px);
    z-index: 0;
}

.review-header > * {
    position: relative;
    z-index: 1;
}

/* ----- Review Rank Circle ----- */

.review-rank {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FF8F66);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* ----- Review Logo ----- */

.review-logo {
    grid-row: 1 / 3;
    grid-column: 2;
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s;
    overflow: hidden;
}

.review-logo:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 53, 0.25);
}

.review-logo img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    display: block;
    padding: 4px;
    background: #fff;
}

/* ----- Review Name & Award ----- */

.review-name-heading {
    grid-row: 1;
    grid-column: 3;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    align-self: end;
}

.review-name {
    color: white;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.review-name:hover {
    color: var(--gold-light);
}

.review-award {
    grid-row: 2;
    grid-column: 3;
    justify-self: start;
    align-self: start;
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.review-tag {
    display: none;
}

/* ----- Review Bonus ----- */

.review-bonus {
    grid-row: 1;
    grid-column: 4;
    color: #FF6B35;
    font-size: 1.4rem;
    font-weight: 800;
    white-space: nowrap;
    text-align: center;
    align-self: end;
}

.review-bonus-sub {
    grid-row: 2;
    grid-column: 4;
    color: #6B7F9C;
    font-size: 0.78rem;
    text-align: center;
    align-self: start;
}

/* ----- Review CTA ----- */

.review-cta {
    grid-row: 1 / 3;
    grid-column: 5;
    background: linear-gradient(135deg, #FF6B35, #E85D26);
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.review-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #FFFFFF;
}

/* ----- Review Content ----- */

.review-content {
    padding: 2rem;
}

/* ----- Info Stats Grid ----- */

.info-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-stat {
    background: var(--bg);
    border: 1px solid #00BFA6;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.2s;
}

.info-stat:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.25rem;
}

.stat-value {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info stats mobile */
@media (max-width: 768px) {
    .info-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .info-stat {
        padding: 0.6rem 0.4rem;
        border-radius: 10px;
    }

    .info-stat .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .info-stat .stat-value {
        font-size: 0.85rem;
        margin-bottom: 0.1rem;
    }

    .info-stat .stat-label {
        font-size: 0.6rem;
    }
}

/* ----- Pros & Cons ----- */

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pros-box,
.cons-box {
    border-radius: 12px;
    padding: 1.5rem;
}

.pros-box {
    background: var(--green-light);
    border: 1px solid var(--green-border);
}

.cons-box {
    background: var(--red-light);
    border: 1px solid var(--red-border);
}

.pros-title {
    color: #16A34A;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cons-title {
    color: #DC2626;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.pros-list li,
.cons-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.pros-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #16A34A;
    font-weight: bold;
}

.cons-list li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: bold;
}

/* Alternate pros/cons styling (used in review pages) */
.pros-list h4 {
    color: #4ADE80;
    margin-bottom: 0.75rem;
}

.cons-list h4 {
    color: #F87171;
    margin-bottom: 0.75rem;
}

/* ----- Review Overview ----- */

.review-overview {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.review-overview h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.review-overview p {
    margin-bottom: 0.75rem;
}

.review-overview p:last-child {
    margin-bottom: 0;
}

/* ----- Review Text ----- */

.review-text {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.review-text p {
    margin-bottom: 1rem;
}

/* ----- Testing Section ----- */

.testing-section {
    background: #0A1628;
    border-left: 3px solid #FF6B35;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.testing-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testing-text {
    line-height: 1.6;
    color: var(--text-dark);
}

/* ----- Ratings Row ----- */

.ratings-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.rating-item {
    text-align: center;
}

.rating-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.rating-score {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--btn-from);
}

/* ----- Rating Breakdown (bar style) ----- */

.rating-breakdown {
    margin-bottom: 1.5rem;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.rating-category {
    width: 120px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.rating-bar-bg {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--gold), var(--accent));
}

.rating-value {
    width: 40px;
    text-align: right;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

/* ----- Rating Box (hero style) ----- */

.rating-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.rating-box .rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.rating-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.highlight-tag {
    background: rgba(255, 107, 53, 0.12);
    color: var(--gold);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.25);
}

.highlight-tag.accent-tag {
    background: rgba(0, 191, 166, 0.12);
    color: var(--accent);
    border-color: rgba(0, 191, 166, 0.25);
}

/* ----- Pull Quote ----- */

.pull-quote {
    border-left: 4px solid #FF6B35;
    background: #0A1628;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.125rem;
    border-radius: 0 8px 8px 0;
    color: #D1D5DB;
}

/* ----- Bottom CTA ----- */

.bottom-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.bottom-cta .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
}

/* ----- Bonus Box ----- */

.bonus-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 191, 166, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.bonus-detail {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* ----- Review Card Mobile ----- */

@media (max-width: 768px) {
    .review-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.5rem 1rem !important;
        gap: 0.5rem !important;
    }

    .review-header > * {
        grid-row: auto !important;
        grid-column: auto !important;
        justify-self: auto !important;
        align-self: auto !important;
    }

    .review-header .review-rank {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .review-header .review-logo {
        margin: 0.25rem 0;
    }

    .review-header .review-logo img {
        width: 100px;
        height: 60px;
    }

    .review-header .review-name-heading {
        font-size: 1.2rem !important;
    }

    .review-header .review-award {
        font-size: 0.72rem !important;
        padding: 4px 12px !important;
    }

    .review-header .review-bonus {
        font-size: 1.3rem !important;
        text-align: center !important;
    }

    .review-header .review-bonus-sub {
        text-align: center !important;
    }

    .review-header .review-cta,
    .review-header a.review-cta {
        padding: 10px 28px;
        font-size: 0.82rem;
        margin-top: 0.25rem;
    }

    .review-card {
        margin-bottom: 1.25rem;
    }

    .review-content {
        padding: 1.25rem;
    }

    .review-text p {
        font-size: 0.875rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pros-box,
    .cons-box {
        padding: 1rem;
    }

    .pull-quote {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .testing-section {
        padding: 1rem;
    }

    .ratings-row {
        justify-content: center;
        gap: 1rem;
    }

    .review-header {
        gap: 0.75rem;
    }

    .review-cta {
        margin-left: 0;
        align-self: stretch;
        text-align: center;
    }

    .rating-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .rating-highlights {
        margin-left: 0;
    }
}

/* ==========================================================================
   9. CONTENT SECTIONS
   ========================================================================== */

.content-section {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #1E3050;
}

.content-section h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section h4 {
    font-size: 1.125rem;
    color: var(--accent);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.content-section ul,
.content-section ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: var(--text-gray);
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

/* Standalone headings (for pages without .content-section wrapper) */
h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    color: var(--accent);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ==========================================================================
   10. DATA TABLE
   ========================================================================== */

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.data-table th {
    background: #0D1B2A;
    color: #FF6B35;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

.data-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(255, 107, 53, 0.04);
}

/* ----- Info Table (review pages) ----- */

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.info-table th {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
    color: var(--gold);
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
}

.info-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover td {
    background: rgba(255, 107, 53, 0.04);
}

@media (max-width: 768px) {
    .data-table th,
    .data-table td {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   11. FAQ SECTION
   ========================================================================== */

.faq-section {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #1E3050;
}

.faq-section h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

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

.faq-question {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-question .toggle {
    color: var(--gold);
    font-size: 1.25rem;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   12. AUTHOR SECTION
   ========================================================================== */

.author-section {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #1E3050;
}

.author-section h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.author-profile {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.author-title {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.author-bio {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* ----- Author Stats Grid ----- */

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

.author-stat {
    text-align: center;
    padding: 1rem;
    background: #0A1628;
    border-radius: 8px;
    border: 1px solid #1E3050;
}

.author-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--btn-from);
    margin-bottom: 0.25rem;
}

.author-stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ----- Author Box (compact, for review pages) ----- */

.author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.author-box-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    overflow: hidden;
}

.author-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-box h4 {
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.author-box .author-title {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .author-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-section {
        padding: 1.25rem;
    }

    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
   13. DISCLAIMER
   ========================================================================== */

.disclaimer {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid #1E3050;
}

.disclaimer h3 {
    color: #DC2626;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
}

.disclaimer p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ----- Disclaimer Box (alternate styling) ----- */

.disclaimer-box {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.disclaimer-box p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: var(--gold);
}

@media (max-width: 768px) {
    .disclaimer {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */

footer {
    background: #06101F;
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #1E3050;
    margin-top: 2rem;
}

.footer-content,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FF6B35;
}

.footer-tagline {
    color: #94A3B8;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #9CA8CB;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #9CA8CB;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #FF6B35;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-legal a {
    color: #64748B;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #9CA8CB;
}

.footer-copyright {
    color: #64748B;
    font-size: 0.875rem;
}

footer p {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

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

/* ==========================================================================
   15. ANIMATIONS
   ========================================================================== */

/* Card float (vertical bounce) */
@keyframes card-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Border shimmer (gradient sweep) */
@keyframes border-shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* Button shimmer (background-position sweep) */
@keyframes btn-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Bonus glow (text-shadow pulse) */
@keyframes bonus-glow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 191, 166, 0.4);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 191, 166, 0.7), 0 0 40px rgba(0, 191, 166, 0.2);
    }
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spin animation (for loading) */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   16. BREADCRUMBS
   ========================================================================== */

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    padding: 1rem 0 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-gray);
}

/* ==========================================================================
   17. GUIDE / ARTICLE CONTENT
   ========================================================================== */

.guide-hero {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #06101F 0%, #0D1B2A 50%, #06101F 100%);
    border-radius: 16px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.guide-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(30deg, transparent 40%, rgba(255, 107, 53, 0.06) 40%, rgba(255, 107, 53, 0.06) 40.5%, transparent 40.5%),
        linear-gradient(150deg, transparent 30%, rgba(0, 191, 166, 0.04) 30%, rgba(0, 191, 166, 0.04) 30.5%, transparent 30.5%);
    pointer-events: none;
    z-index: 0;
}

.guide-hero > * {
    position: relative;
    z-index: 1;
}

.guide-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.guide-hero h1 .accent {
    color: var(--accent);
}

.guide-hero h1 .gold {
    color: var(--gold);
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.guide-hero p {
    font-size: 1.125rem;
    color: #D1D5DB;
    max-width: 700px;
}

.fact-check {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ----- Highlight Box ----- */

.highlight-box {
    background: linear-gradient(135deg, #0A1929, #0D1B2A);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box p {
    color: var(--text-dark);
}

.highlight-box strong {
    color: var(--accent);
}

/* ----- Warning Box ----- */

.warning-box {
    background: rgba(220, 50, 50, 0.1);
    border: 1px solid rgba(220, 50, 50, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box strong {
    color: #FF6B6B;
}

/* ----- CTA Box ----- */

.cta-box {
    background: linear-gradient(135deg, #0A1628, #0D1B2A);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-box h3 {
    color: var(--gold);
    margin-top: 0;
}

/* ----- CTA Banner ----- */

.cta-banner {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-banner h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.cta-banner p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* ----- CTA Button (large/alternate styles) ----- */

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    color: #FFFFFF !important;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #FFFFFF !important;
}

.cta-btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ----- Related Guides Grid ----- */

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

.related-guide-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s;
    text-decoration: none;
}

.related-guide-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.related-guide-card h4 {
    color: var(--text-dark);
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.related-guide-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* ----- Step List ----- */

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.step-list li {
    counter-increment: step-counter;
    padding: 1rem 1rem 1rem 3.5rem;
    position: relative;
    background: rgba(255, 107, 53, 0.04);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--gold);
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0.75rem;
    top: 1rem;
    background: var(--gold);
    color: #FFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .guide-hero h1 {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   18. COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #06101F;
    border-top: 1px solid #1E3050;
    padding: 1.25rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-banner-text {
    flex: 1;
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cookie-decline {
    background: transparent;
    color: var(--text-gray);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.cookie-decline:hover {
    border-color: var(--text-gray);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   19. AGE VERIFICATION MODAL
   ========================================================================== */

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.age-modal-overlay.show {
    display: flex;
}

.age-modal {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease-out;
}

.age-modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-modal h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-modal p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.age-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-confirm {
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.age-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.age-deny {
    background: transparent;
    color: var(--text-gray);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.age-deny:hover {
    border-color: var(--text-gray);
    color: var(--text-dark);
}

.age-modal-disclaimer {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: #6B7F9C;
}

/* ==========================================================================
   20. BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 999;
    transition: all 0.3s;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   21. UTILITY CLASSES
   ========================================================================== */

/* Gold/orange accent text */
.gold {
    color: #FF6B35;
}

.accent {
    color: var(--accent);
}

/* 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;
}

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

/* Margin utilities */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* ==========================================================================
   22. GLOBAL MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }

    .container {
        padding: 0 0.75rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem !important;
    }

    h3 {
        font-size: 1.15rem;
    }

    .content-section {
        padding: 1.25rem;
    }

    .content-section h3 {
        font-size: 1.15rem;
    }

    .hero {
        padding: 0.875rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero h1 {
        font-size: 1.35rem !important;
        margin-bottom: 0.4rem !important;
    }

    .hero .intro-text {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.5 !important;
    }

    .hero .author-meta {
        margin-bottom: 0.4rem !important;
        font-size: 0.75rem !important;
    }

    .hero-layout {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-pick-card {
        display: none;
    }

    .hero-authors {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-author-img {
        width: 40px;
        height: 40px;
    }

    .byline {
        font-size: 0.72rem;
        gap: 0.25rem 0;
    }

    .byline-dot {
        width: 18px;
        height: 18px;
        font-size: 0.45rem;
    }

    .author-meta {
        flex-wrap: wrap;
        gap: 0.25rem 0.75rem;
    }

    .author-name {
        flex-basis: calc(100% - 44px);
    }

    .expert-badge,
    .last-updated {
        margin-left: 44px;
    }

    .comparison-table {
        border-radius: 12px;
    }

    .comparison-table td {
        padding: 10px 6px;
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   23. AFFILIATE TABLE WRAPPER (alternate layout)
   ========================================================================== */

.aff-table-wrap {
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

.aff-table-wrap h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.aff-rank {
    width: 28px;
    padding-left: 10px;
    padding-right: 4px;
    text-align: center;
    font-weight: bold;
    color: #FF6B35;
}

.aff-logo {
    width: 160px;
    padding-left: 4px;
}

.aff-logo img {
    width: 150px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    padding: 4px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s;
}

.aff-logo img:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 107, 53, 0.25);
}

.aff-bonus {
    font-weight: 600;
}

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

.aff-cta a {
    background: linear-gradient(135deg, #FF6B35, #E85D26);
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    display: inline-block;
    transition: transform 0.2s;
}

.aff-cta a:hover {
    transform: translateY(-1px);
}

.aff-hide {
    display: table-cell;
}

@media (max-width: 768px) {
    .aff-table-wrap {
        padding: 0 !important;
    }

    .aff-table-wrap h2 {
        padding: 0 0.75rem;
        font-size: 1.25rem;
    }

    .aff-logo img {
        width: 100px !important;
        height: 50px !important;
    }

    .aff-hide {
        display: none !important;
    }

    .comparison-table td {
        padding: 10px 6px;
        font-size: 0.78rem;
    }

    .aff-cta a {
        padding: 7px 10px;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   24. 404 PAGE
   ========================================================================== */

.error-page {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--btn-from);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.error-page h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-gray);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* ==========================================================================
   25. LOADING SPINNER
   ========================================================================== */

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--btn-from);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ==========================================================================
   26. TOOLTIP
   ========================================================================== */

.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #06101F;
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    border: 1px solid var(--border);
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
}

/* ==========================================================================
   27. BADGE / TAG COMPONENTS
   ========================================================================== */

.badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-gold {
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.badge-teal {
    background: rgba(0, 191, 166, 0.15);
    color: #00BFA6;
    border: 1px solid rgba(0, 191, 166, 0.3);
}

.badge-green {
    background: rgba(22, 163, 74, 0.15);
    color: #16A34A;
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.badge-red {
    background: rgba(220, 38, 38, 0.15);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ==========================================================================
   28. CARD COMPONENT (generic)
   ========================================================================== */

.card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-body {
    padding: 1.5rem;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   29. GRID LAYOUTS
   ========================================================================== */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

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

/* ==========================================================================
   30. COMPARISON TABLE (centered variant for review pages)
   ========================================================================== */

.comparison-table-centered {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.comparison-table-centered th {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
    color: var(--gold);
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
}

.comparison-table-centered th:first-child {
    text-align: left;
}

.comparison-table-centered td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    color: var(--text-gray);
}

.comparison-table-centered td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table-centered tr:hover td {
    background: rgba(255, 107, 53, 0.04);
}

.comparison-table-centered .highlight-row td {
    background: rgba(255, 107, 53, 0.08);
}

@media (max-width: 768px) {
    .comparison-table-centered {
        font-size: 0.75rem;
    }

    .comparison-table-centered th,
    .comparison-table-centered td {
        padding: 0.5rem 0.35rem;
    }
}

/* ==========================================================================
   31. PAYMENT METHOD ICONS / GAME PROVIDER BADGES
   ========================================================================== */

.payment-icons,
.provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-icon,
.provider-badge {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    transition: all 0.2s;
}

.payment-icon:hover,
.provider-badge:hover {
    border-color: var(--gold);
    color: var(--text-dark);
}

/* ==========================================================================
   32. PROGRESS BAR
   ========================================================================== */

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    transition: width 0.5s ease;
}

/* ==========================================================================
   33. FORM ELEMENTS
   ========================================================================== */

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-input::placeholder {
    color: #6B7F9C;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ==========================================================================
   34. CONTACT PAGE
   ========================================================================== */

.contact-section {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.contact-info-item .icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-info-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-info-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   35. ABOUT PAGE
   ========================================================================== */

.about-hero {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #06101F 0%, #0D1B2A 50%, #06101F 100%);
    border-radius: 16px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.125rem;
    color: #D1D5DB;
    max-width: 700px;
    margin: 0 auto;
}

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

.team-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.team-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.team-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.team-card .role {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* ==========================================================================
   36. AUTHORS LISTING PAGE
   ========================================================================== */

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

.author-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.2s;
    text-decoration: none;
}

.author-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.author-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
}

.author-card .role {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.author-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .authors-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   37. LEGAL PAGES (Privacy, Terms, Cookie Policy)
   ========================================================================== */

.legal-content {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.legal-content h1 {
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ol {
    list-style-type: decimal;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--gold);
}

.legal-content a:hover {
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   38. TABLE OF CONTENTS (sidebar)
   ========================================================================== */

.toc {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.toc h3 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 0.25rem 0;
}

.toc a:hover {
    color: var(--gold);
}

.toc a.active {
    color: var(--gold);
    font-weight: 600;
}

/* ==========================================================================
   39. MOBILE SPECIFIC TWEAKS
   ========================================================================== */

@media (max-width: 768px) {
    /* Force proper table display */
    thead {
        display: table-header-group;
    }
    tbody {
        display: table-row-group;
    }
    tr {
        display: table-row;
    }
    td, th {
        display: table-cell;
    }
}

/* ==========================================================================
   40. PRINT STYLES
   ========================================================================== */

@media print {
    body {
        background: white;
        color: #333;
        padding-top: 0;
    }

    .navbar,
    .nav-toggle,
    .cookie-banner,
    .age-modal-overlay,
    .back-to-top,
    .skip-link,
    .cta-button,
    .cta-btn,
    .review-cta,
    .hero-pick-card {
        display: none !important;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .content-section,
    .review-card,
    .faq-section,
    .author-section,
    .disclaimer {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    a {
        color: #333;
    }

    a::after {
        content: ' (' attr(href) ')';
        font-size: 0.8em;
        color: #666;
    }
}

/* ==========================================================================
   41. ACCESSIBILITY FOCUS STYLES
   ========================================================================== */

*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ==========================================================================
   42. SELECTION STYLES
   ========================================================================== */

::selection {
    background: rgba(255, 107, 53, 0.3);
    color: #FFFFFF;
}

::-moz-selection {
    background: rgba(255, 107, 53, 0.3);
    color: #FFFFFF;
}

/* ==========================================================================
   43. SCROLLBAR STYLING
   ========================================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2A4060;
}

/* ==========================================================================
   44. SMOOTH SCROLL ANCHORS (section spacing)
   ========================================================================== */

[id] {
    scroll-margin-top: 120px;
}

/* ==========================================================================
   45. IMAGE GALLERY / SCREENSHOT STYLES
   ========================================================================== */

.screenshot-wrap {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.screenshot-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    color: var(--text-gray);
    font-size: 0.8rem;
    text-align: center;
}

/* ==========================================================================
   46. NOTIFICATION / ALERT BOXES
   ========================================================================== */

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert-info {
    background: rgba(0, 191, 166, 0.08);
    border: 1px solid rgba(0, 191, 166, 0.25);
    color: var(--accent);
}

.alert-warning {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: var(--gold);
}

.alert-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #F87171;
}

.alert-success {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.25);
    color: #4ADE80;
}

/* ==========================================================================
   47. ANCHOR LINK STYLING (internal navigation)
   ========================================================================== */

.anchor-link {
    color: var(--text-gray);
    opacity: 0;
    transition: opacity 0.2s;
    margin-left: 0.5rem;
    text-decoration: none;
}

h2:hover .anchor-link,
h3:hover .anchor-link {
    opacity: 1;
}

.anchor-link:hover {
    color: var(--gold);
}

/* ==========================================================================
   48. RESPONSIVE TABLE OVERFLOW WRAPPER
   ========================================================================== */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* ==========================================================================
   49. SEPARATOR / DIVIDER
   ========================================================================== */

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

.divider-orange {
    border-top-color: rgba(255, 107, 53, 0.3);
}

/* ==========================================================================
   50. MISCELLANEOUS
   ========================================================================== */

/* Lists with standard styling within content */
.content-section ul {
    list-style-type: disc;
}

.content-section ol {
    list-style-type: decimal;
}

/* Blockquote styling */
blockquote {
    border-left: 4px solid #FF6B35;
    background: #0A1628;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.05rem;
    border-radius: 0 8px 8px 0;
    color: #D1D5DB;
}

blockquote p {
    color: #D1D5DB;
    margin-bottom: 0;
}

/* Code styling */
code {
    background: rgba(255, 107, 53, 0.1);
    color: var(--gold-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
}

pre {
    background: #06101F;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* Horizontal rule */
hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

/* Strong / emphasis */
strong,
b {
    font-weight: 700;
    color: var(--text-dark);
}

em,
i {
    font-style: italic;
}

/* Mark / highlight */
mark {
    background: rgba(255, 107, 53, 0.2);
    color: var(--text-dark);
    padding: 1px 4px;
    border-radius: 3px;
}

/* Small text */
small {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Abbreviation */
abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
}

/* Figure */
figure {
    margin: 1.5rem 0;
}

figcaption {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Details / Summary */
details {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
}

details[open] summary {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}
