:root {
    --color-bg: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-text: #FFFFFF;
    --color-text-muted: #a0a0a0;
    --color-accent: #1D9BF0;
    --color-accent-glow: rgba(29, 155, 240, 0.5);
    --color-border: #333333;

    --font-title: 'Saira Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --border-radius: 8px;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.text-highlight {
    color: var(--color-accent);
    text-shadow: 0 0 10px var(--color-accent-glow);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-text);
    color: var(--color-bg);
    border: 1px solid var(--color-text);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

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

.btn-secondary:hover {
    background-color: rgba(29, 155, 240, 0.1);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

.btn-large {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    padding: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    padding-top: 120px;
    /* Space for fixed header if any, usually good for hero */
}

/* Game Menu Grid (Refined Distinction Section) */
.game-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: stretch;
}

.menu-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.menu-column:hover {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.04);
}

.menu-subtitle {
    font-family: 'Saira Condensed', sans-serif;
    color: var(--color-accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.menu-intro {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

/* Stat Cards (Mission Style) */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-left-color: var(--color-accent);
    background: rgba(29, 155, 240, 0.1);
    transform: translateX(5px);
}

.stat-left {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.stat-arrow {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.stat-card:hover .stat-arrow {
    color: var(--color-accent);
}

.stat-right {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Trajectory List */
.trajectory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trajectory-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.trajectory-list .check-icon {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Ecosystem Banner */
.ecosystem-banner {
    margin-top: 3rem;
    background: linear-gradient(90deg, rgba(29, 155, 240, 0.1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(29, 155, 240, 0.1) 100%);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

.ecosystem-banner p {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

.highlight-neon {
    font-family: 'Saira Condensed', sans-serif;
    font-size: 1.8rem;
    /* Large size */
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--color-accent), 0 0 20px var(--color-accent);
    display: block;
    margin-top: 0.5rem;
}

/* Mobile Responsiveness for Game Menu */
@media (max-width: 768px) {
    .game-menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .ecosystem-banner {
        padding: 1.5rem;
    }

    .highlight-neon {
        font-size: 1.4rem;
    }
}

/* Hero Video Container */
.hero-video-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 39.375%;
    /* 16:9 for 700px width scaling */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 30px rgba(29, 155, 240, 0.2);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-video-wrapper {
        padding-bottom: 56.25%;
        /* Standard 16:9 on mobile */
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

/* Tactical Board Effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px solid rgba(29, 155, 240, 0.1);
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 1px solid rgba(29, 155, 240, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.glow-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(29, 155, 240, 0.1) 0%, transparent 60%);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.price-highlight {
    color: var(--color-text);
    font-weight: 700;
    border-bottom: 2px solid var(--color-accent);
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.hero-badge {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Sections General */
.section {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title.center {
    display: block;
    text-align: center;
}

.separator-line {
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 1rem 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.about-item {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed);
}

.about-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.icon-box {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.icon-box svg {
    filter: drop-shadow(0 0 5px rgba(29, 155, 240, 0.5));
}

.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: var(--spacing-md);
}

.closing-text {
    margin-top: var(--spacing-md);
    font-size: 1.5rem;
    font-family: var(--font-title);
    text-transform: uppercase;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.pillar-card {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-accent);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

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

.pillar-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.pillar-icon svg {
    filter: drop-shadow(0 0 8px rgba(29, 155, 240, 0.6));
}

/* Championships Section */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '>';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight-box {
    background: rgba(29, 155, 240, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Responsive Iframe */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 30px rgba(29, 155, 240, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* Challenges Section */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: var(--spacing-md);
}

/* Why Different Section */
.difference-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.diff-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-text);
}

.diff-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.diff-subtitle {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.diff-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.transformation-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 4px;
    border-left: 2px solid var(--color-accent);
}

.diff-quote {
    font-style: italic;
    color: var(--color-text-muted);
    border-left: 3px solid #333;
    padding-left: 1rem;
    margin-top: 1rem;
}

.eco-list li {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 10px;
}

.check-icon {
    color: var(--color-accent);
    font-weight: bold;
}

.eco-footer {
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(29, 155, 240, 0.1), transparent);
    border-left: 4px solid var(--color-accent);
}

.highlight-neon {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(29, 155, 240, 0.5);
}

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

.challenge-item {
    background: var(--color-bg-secondary);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-title);
    text-transform: uppercase;
    transition: all var(--transition-speed);
}

.challenge-item:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.benefit-card {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.benefit-card.highlight {
    color: var(--color-accent);
    font-weight: 700;
    border: 1px solid var(--color-accent);
    border-radius: 4px;
}

/* EA FC Style Game Cards */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.game-card {
    background: #050505;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(29, 155, 240, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.step-number {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0.5;
}

.game-card h3 {
    font-size: 1.2rem;
    margin: 0;
}

.card-visual {
    height: 120px;
    background: rgba(29, 155, 240, 0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(29, 155, 240, 0.1);
    position: relative;
}

/* Card 1 Visuals */
.energy-bar-container {
    width: 80%;
}

.energy-label {
    font-size: 0.7rem;
    color: var(--color-accent);
    margin-bottom: 5px;
    font-weight: bold;
}

.energy-bar {
    height: 10px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.energy-bar .fill {
    height: 100%;
    width: 0%;
    background: var(--color-accent);
    animation: fillEnergy 2s ease-out forwards;
    box-shadow: 0 0 10px var(--color-accent);
}

@keyframes fillEnergy {
    to {
        width: 85%;
    }
}

.stat-row {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 0.7rem;
    color: #fff;
    font-family: var(--font-title);
}

.stat-val {
    color: var(--color-accent);
    font-weight: bold;
}

/* Card 2 Visuals */
.scoreboard-mini {
    width: 100%;
    padding: 10px;
}

.player-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.player-row.active {
    background: rgba(29, 155, 240, 0.2);
    border: 1px solid var(--color-accent);
}

.player-row .rank {
    color: var(--color-accent);
    font-weight: bold;
    width: 20px;
}

.player-row .score {
    color: #fff;
    font-weight: bold;
}

/* Card 3 Visuals */
.podium-mini {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 80px;
}

.podium-bar {
    width: 30px;
    background: linear-gradient(to top, #333, #555);
    border-top: 2px solid #777;
}

.podium-bar.first {
    height: 100%;
    background: linear-gradient(to top, var(--color-accent), #2ECC71);
    /* Greenish glow? or Gold? Keeping accent for now */
    border-top: 2px solid #fff;
    box-shadow: 0 0 15px var(--color-accent-glow);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 5px;
}

.trophy-icon {
    font-size: 1.2rem;
}

.podium-bar.second {
    height: 70%;
}

.podium-bar.third {
    height: 50%;
}

/* Card 4 Visuals */
.legend-badge {
    text-align: center;
    border: 2px solid var(--color-accent);
    padding: 10px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent-glow), inset 0 0 10px var(--color-accent-glow);
    text-transform: uppercase;
}

.card-body p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* Prizes Chart Expansion */
/* Vertical Prize Chart (Refined) */
.prize-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 400px;
    /* Increased height */
    margin-top: 4rem;
    gap: 8px;
    padding-bottom: 2rem;
    padding-top: 4rem;
    /* Space for values */
    overflow-x: auto;
    position: relative;
}

.chart-bar {
    flex: 1;
    min-width: 40px;
    height: var(--height);
    background: linear-gradient(180deg, var(--color-accent) 0%, rgba(29, 155, 240, 0.1) 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border-top: 2px solid var(--color-accent);
}

.chart-bar:hover {
    background: linear-gradient(180deg, #fff 0%, var(--color-accent) 100%);
    box-shadow: 0 0 25px rgba(29, 155, 240, 0.6);
    z-index: 10;
    transform: scaleY(1.02);
    transform-origin: bottom;
}

.chart-bar.active {
    background: linear-gradient(180deg, #00AFFF 0%, rgba(0, 175, 255, 0.2) 100%);
    box-shadow: 0 0 30px rgba(0, 175, 255, 0.4);
    z-index: 5;
    border-top: 2px solid #fff;
}

.chart-bar .members {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.chart-bar .value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 1;
    /* Always visible as per request */
}

/* Specific highlight for the top prize */
.chart-bar.active .highlight-top {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px #00AFFF, 0 0 20px #00AFFF;
    top: -60px;
    background: rgba(0, 0, 0, 0.9);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #00AFFF;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.chart-bar.active .highlight-members {
    color: #fff;
    font-weight: 800;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .prize-chart {
        height: 350px;
        gap: 6px;
        padding-right: 20px;
        /* Space for last bar tooltip */
        justify-content: flex-start;
        /* Allow scroll */
    }

    .chart-bar {
        min-width: 45px;
        /* Wider for touch */
    }

    .chart-bar .members {
        font-size: 0.7rem;
        bottom: -35px;
    }

    .chart-bar .value {
        font-size: 0.7rem;
    }

    .chart-bar.active .highlight-top {
        font-size: 1rem;
        top: -50px;
        padding: 4px 8px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: var(--spacing-lg) auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

/* Transformation */
.transformation-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1517466787929-bc90951d0974?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.transformation-box {
    background: rgba(0, 0, 0, 0.8);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-accent);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* Target Audience */
.target-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.target-card {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.target-card.highlight {
    background-color: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.testimonial-card {
    background: var(--color-bg-secondary);
    padding: var(--spacing-md);
    border-left: 3px solid var(--color-accent);
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #ddd;
}

.author {
    font-weight: 700;
    color: var(--color-accent);
}

/* Pricing */
.pricing-section {
    background: radial-gradient(circle at center, rgba(29, 155, 240, 0.1) 0%, transparent 70%);
}

.pricing-card {
    background: #000;
    border: 2px solid var(--color-accent);
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 50px rgba(29, 155, 240, 0.15);
}

.pricing-header {
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-body {
    padding: 2rem;
    text-align: center;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 0.8rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-accent);
    margin-right: 0.5rem;
    font-weight: bold;
}

.comparison {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .chart-bar .value {
        font-size: 0.7rem;
        top: -20px;
    }

    .chart-bar .members {
        font-size: 0.6rem;
        bottom: -20px;
    }

    .prize-chart {
        gap: 2px;
    }

    .pricing-card {
        width: 100%;
    }
}