/* ============================================
   LAMPIONS BET - Master CSS Design System
   Style: Luxury Gold Casino (Style 1)
   Market: Brazil
   ============================================ */

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
    /* Primary Colors - Luxury Gold */
    --color-primary: #FFD700;
    --color-primary-dark: #B8860B;
    --color-primary-light: #FFF8DC;

    /* Secondary Colors - Deep Black/Dark */
    --color-secondary: #1A1A1A;
    --color-secondary-dark: #0D0D0D;
    --color-secondary-light: #2D2D2D;

    /* Accent Colors */
    --color-accent: #C9A227;
    --color-accent-hover: #E6B800;

    /* Text Colors */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B0B0B0;
    --color-text-dark: #1A1A1A;
    --color-text-gold: #FFD700;

    /* Background Colors */
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #2D2D2D;
    --bg-gradient: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
    --bg-gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);

    /* Status Colors */
    --color-success: #28A745;
    --color-warning: #FFC107;
    --color-danger: #DC3545;
    --color-info: #17A2B8;

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;
    --fs-5xl: 3rem;

    /* Font Weights */
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

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

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

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

body {
    font-family: var(--font-secondary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

h1 {
    font-size: var(--fs-5xl);
}

h2 {
    font-size: var(--fs-4xl);
}

h3 {
    font-size: var(--fs-3xl);
}

h4 {
    font-size: var(--fs-2xl);
}

h5 {
    font-size: var(--fs-xl);
}

h6 {
    font-size: var(--fs-lg);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
}

strong, b {
    font-weight: var(--fw-bold);
}

/* Gold Text Highlight */
.text-gold {
    color: var(--color-text-gold);
}

.text-gradient {
    background: var(--bg-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-md);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--bg-gold-gradient);
    border-radius: var(--radius-full);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--space-sm) var(--space-md);
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--bg-gold-gradient);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    color: var(--color-text-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-text-dark);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--fs-lg);
}

.btn-small {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    background: var(--bg-gradient);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.7) 0%,
        rgba(13, 13, 13, 0.8) 50%,
        rgba(13, 13, 13, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: var(--space-xl);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--fs-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: var(--space-lg);
}

.card-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: var(--space-2xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gold-gradient);
    border-radius: var(--radius-full);
    font-size: var(--fs-3xl);
}

/* ============================================
   GRIDS
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

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

/* ============================================
   TABLES
   ============================================ */
.table-container {
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
}

th, td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

th {
    background: var(--bg-tertiary);
    font-family: var(--font-primary);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: var(--fs-sm);
    letter-spacing: 0.5px;
}

tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-icon {
    font-size: var(--fs-xl);
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-secondary);
}

/* ============================================
   PROS & CONS
   ============================================ */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.pros-list,
.cons-list {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.pros-list {
    border-left: 4px solid var(--color-success);
}

.cons-list {
    border-left: 4px solid var(--color-danger);
}

.pros-list h4,
.cons-list h4 {
    margin-bottom: var(--space-lg);
}

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

.pros-list li,
.cons-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--color-text-secondary);
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: var(--fw-bold);
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--color-danger);
    font-weight: var(--fw-bold);
}

/* ============================================
   RATING & SCORE
   ============================================ */
.rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.rating-star {
    color: var(--color-primary);
    font-size: var(--fs-lg);
}

.rating-star.empty {
    color: var(--color-text-secondary);
}

.score-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--bg-gold-gradient);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
}

/* Responsible Gaming */
.responsible-gaming {
    background: rgba(255, 215, 0, 0.05);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
    text-align: center;
}

.responsible-gaming p {
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.age-badge {
    display: inline-block;
    background: var(--color-danger);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }

.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

.py-1 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-2 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-3 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --fs-5xl: 2.5rem;
        --fs-4xl: 2rem;
        --fs-3xl: 1.75rem;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: var(--space-lg);
        gap: 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-link {
        padding: var(--space-md);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-5xl: 2rem;
        --fs-4xl: 1.75rem;
        --fs-3xl: 1.5rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    th, td {
        padding: var(--space-sm);
        font-size: var(--fs-sm);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Gold shimmer effect for special elements */
.shimmer {
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 50%,
        var(--color-primary) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

/* ============================================
   SPECIAL COMPONENTS
   ============================================ */
/* Info Box */
.info-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--color-primary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

.info-box-title {
    color: var(--color-primary);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-sm);
}

/* Warning Box */
.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--color-warning);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

/* Success Box */
.success-box {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid var(--color-success);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

/* Step List */
.step-list {
    counter-reset: step-counter;
    list-style: none;
}

.step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: var(--space-xl);
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-gold-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
}

/* Comparison Badge */
.comparison-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
}

.badge-winner {
    background: var(--color-success);
    color: white;
}

.badge-neutral {
    background: var(--color-warning);
    color: var(--color-text-dark);
}

.badge-loser {
    background: var(--color-danger);
    color: white;
}

/* Trust Score */
.trust-meter {
    width: 100%;
    height: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: var(--space-md) 0;
}

.trust-meter-fill {
    height: 100%;
    background: var(--bg-gold-gradient);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

/* Payment Method */
.payment-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-secondary);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-primary);
}

/* ============================================
   ADDITIONAL COMPONENTS FOR SUBPAGES
   ============================================ */

/* Mobile Navigation (Alternative) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-menu li a {
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--space-sm) var(--space-md);
    transition: color var(--transition-fast);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--color-primary);
}

/* Hero Page Variant */
.hero-page {
    min-height: 50vh;
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
}

.hero-page .hero-content {
    text-align: center;
}

.hero-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
}

.hero-page .hero-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.stat-label {
    display: block;
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    margin-top: var(--space-xs);
}

/* Section Variants */
.section-alt {
    background: var(--bg-secondary);
}

.section-title {
    font-size: var(--fs-3xl);
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--bg-gold-gradient);
    margin: var(--space-md) auto 0;
    border-radius: var(--radius-full);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    color: var(--color-text-secondary);
}

/* Trust Score Card */
.trust-score-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.trust-score-header h2 {
    font-size: var(--fs-2xl);
    margin: 0;
}

.trust-score {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
}

.score-number {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.score-label {
    font-size: var(--fs-lg);
    color: var(--color-text-secondary);
}

.trust-score-content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 215, 0, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    color: var(--color-text-primary);
}

.badge-icon {
    color: var(--color-success);
    font-weight: var(--fw-bold);
}

/* Dimension Cards */
.dimension-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.dimension-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.dimension-number {
    width: 50px;
    height: 50px;
    background: var(--bg-gold-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    flex-shrink: 0;
}

.dimension-header h3 {
    font-size: var(--fs-xl);
    margin: 0;
}

.subsection {
    margin-bottom: var(--space-xl);
}

.subsection h4 {
    font-size: var(--fs-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.subsection h5 {
    font-size: var(--fs-base);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.dimension-conclusion {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(40, 167, 69, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-success);
    margin-top: var(--space-xl);
}

.conclusion-icon {
    color: var(--color-success);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
}

/* Status Boxes */
.status-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.status-pending {
    background: rgba(255, 193, 7, 0.15);
    border-left: 4px solid var(--color-warning);
}

.status-approved {
    background: rgba(40, 167, 69, 0.15);
    border-left: 4px solid var(--color-success);
}

.status-icon {
    font-size: var(--fs-xl);
}

/* Check and Cross Lists */
.check-list,
.cross-list {
    list-style: none;
    padding: 0;
}

.check-list li,
.cross-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
    color: var(--color-text-secondary);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: var(--fw-bold);
}

.cross-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--color-danger);
    font-weight: var(--fw-bold);
}

/* Company Info */
.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.company-item {
    background: var(--bg-tertiary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.company-item h5 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

/* Intro Box */
.intro-box {
    max-width: 900px;
    margin: 0 auto;
}

.intro-box p {
    font-size: var(--fs-lg);
    line-height: 1.8;
}

.highlight-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--color-primary);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
    border-radius: var(--radius-md);
}

/* Info Card */
.info-card {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Methods Comparison */
.methods-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.methods-blocked,
.methods-allowed {
    background: var(--bg-tertiary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.methods-blocked {
    border-left: 4px solid var(--color-danger);
}

.methods-allowed {
    border-left: 4px solid var(--color-success);
}

.methods-blocked h4,
.methods-allowed h4 {
    font-size: var(--fs-base);
    margin-bottom: var(--space-md);
}

/* Advantages Grid */
.advantages-grid {
    margin-top: var(--space-xl);
}

.advantages-grid h3 {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.advantage-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 215, 0, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    margin: var(--space-xs);
    font-size: var(--fs-sm);
}

.advantage-icon {
    font-size: var(--fs-lg);
}

/* Prerequisites Card */
.prerequisites-card {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.prerequisites-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

/* Related Links */
.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.related-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all var(--transition-base);
    text-decoration: none;
}

.related-link:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.link-icon {
    font-size: var(--fs-xl);
    color: var(--color-primary);
}

.related-link span:last-child {
    color: var(--color-text-primary);
}

/* Footer Variants */
.footer-brand {
    grid-column: span 1;
}

.footer-brand img {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
}

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

.footer-cta h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.footer-cta p {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
}

.footer-bottom .disclaimer {
    font-size: var(--fs-xs);
    color: var(--color-text-secondary);
    opacity: 0.7;
    margin-top: var(--space-sm);
}

/* Verify Note */
.verify-note {
    background: rgba(23, 162, 184, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-info);
    font-size: var(--fs-sm);
}

/* Button Variants */
.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
}

/* ============================================
   RESPONSIVE FOR ADDITIONAL COMPONENTS
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: var(--space-lg);
        gap: 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: var(--space-md);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .stat-value {
        font-size: var(--fs-3xl);
    }

    .trust-score-header {
        flex-direction: column;
        text-align: center;
    }

    .dimension-header {
        flex-direction: column;
        text-align: center;
    }

    .dimension-conclusion {
        flex-direction: column;
        text-align: center;
    }

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

/* ============================================
   AFFILIATE DISCLOSURE BANNER
   ============================================ */
.disclosure-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding: var(--space-sm) 0;
    text-align: center;
}

.disclosure-banner p {
    color: var(--color-text-secondary);
    font-size: var(--fs-sm);
    margin: 0;
    line-height: 1.5;
}

.disclosure-banner strong {
    color: var(--color-primary);
}
