/* ===== CSS VARIABLES ===== */
:root {
    /* Color Tokens */
    --rage-red: #ff2d2d;
    --deep-crimson: #b40000;
    --ember: #ff7a1a;
    --signal-yellow: #ffcc00;
    --ink: #0e0e12;
    --slate: #17171f;
    --paper: #f5f6fa;
    
    /* Typography */
    --font-display: 'Russo One', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* 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: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-neon: 0 0 20px rgba(255, 45, 45, 0.5);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--paper);
    background: linear-gradient(135deg, var(--ink) 0%, var(--slate) 100%);
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-2xl);
    background: linear-gradient(135deg, var(--rage-red), var(--ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rage-red), var(--deep-crimson));
    color: white;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 45, 45, 0.7);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--signal-yellow), var(--ember));
    color: var(--ink);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--paper);
    border: 2px solid var(--rage-red);
    box-shadow: var(--shadow-md);
}

.btn-outline:hover {
    background: var(--rage-red);
    color: white;
    transform: translateY(-2px);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(90deg, var(--rage-red), var(--ember));
    color: white;
    padding: var(--space-sm) 0;
    text-align: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== HEADER ===== */
.header {
    background: rgba(23, 23, 31, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 45, 45, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--rage-red);
}

.logo img {
    border-radius: var(--radius-sm);
}

.nav {
    display: flex;
    gap: var(--space-xl);
}

.nav a {
    color: var(--paper);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rage-red);
    transition: width var(--transition-normal);
}

.nav a:hover {
    color: var(--rage-red);
}

.nav a:hover::after {
    width: 100%;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--paper);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: rgba(255, 45, 45, 0.1);
    color: var(--rage-red);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--paper);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 45, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 122, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-logo {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neon);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--rage-red), var(--ember), var(--signal-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 45, 45, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 45, 45, 0.6)); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(245, 246, 250, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.game-scene {
    width: 400px;
    height: 300px;
    background: linear-gradient(180deg, var(--slate) 0%, var(--ink) 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--rage-red);
}

.ground {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, var(--deep-crimson), var(--ember));
    border-top: 2px solid var(--rage-red);
}

.player-runner {
    position: absolute;
    bottom: 60px;
    left: 50px;
    width: 40px;
    height: 60px;
    background: var(--signal-yellow);
    border-radius: var(--radius-sm);
    animation: playerRun 2s infinite;
}

@keyframes playerRun {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.chaser {
    position: absolute;
    bottom: 60px;
    left: 20px;
    width: 50px;
    height: 70px;
    background: var(--rage-red);
    border-radius: var(--radius-sm);
    animation: chaserChase 3s infinite;
}

@keyframes chaserChase {
    0% { left: 20px; }
    50% { left: 300px; }
    100% { left: 20px; }
}

.game-scene:hover .chaser {
    animation-duration: 1.5s;
}

/* ===== SECTIONS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.step-card {
    background: rgba(23, 23, 31, 0.8);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--rage-red);
    box-shadow: var(--shadow-neon);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--rage-red);
}

/* ===== FORTNITE SECTION ===== */
.fortnite-section {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 122, 26, 0.1));
}

.fortnite-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.fortnite-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--rage-red);
}

.fortnite-steps {
    margin: var(--space-xl) 0;
    padding-left: var(--space-xl);
}

.fortnite-steps li {
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.coming-soon-notice {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--signal-yellow);
}

.notice-text p {
    color: rgba(245, 246, 250, 0.9);
    line-height: 1.6;
}

.island-code-container {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.island-code {
    background: rgba(23, 23, 31, 0.8);
    border: 2px solid var(--rage-red);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.island-code code {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--signal-yellow);
}

.fortnite-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-placeholder {
    background: rgba(23, 23, 31, 0.8);
    border: 2px dashed rgba(255, 45, 45, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    opacity: 0.7;
}

.preview-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--rage-red);
}

.preview-placeholder p {
    color: rgba(245, 246, 250, 0.7);
}

/* ===== LEADERBOARD SECTION ===== */
.leaderboard-section {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 122, 26, 0.1));
}

.leaderboard-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.leaderboard-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--signal-yellow);
}

.leaderboard-notice {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.tab-btn {
    background: rgba(23, 23, 31, 0.8);
    border: 2px solid var(--rage-red);
    color: var(--paper);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--rage-red);
    color: white;
}

.countdown {
    margin: var(--space-xl) 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.countdown-item {
    background: rgba(23, 23, 31, 0.9);
    border: 2px solid var(--rage-red);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    min-width: 80px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.leaderboard-table {
    background: rgba(23, 23, 31, 0.8);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 45, 45, 0.2);
}

.leaderboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: var(--space-lg);
    text-align: left;
    border-bottom: 1px solid rgba(255, 45, 45, 0.1);
}

.leaderboard-table th {
    background: rgba(255, 45, 45, 0.1);
    font-weight: 600;
    color: var(--rage-red);
}

.leaderboard-table tr:hover {
    background: rgba(255, 45, 45, 0.05);
}

.leaderboard-table tr:nth-child(1) {
    background: rgba(255, 204, 0, 0.1);
}

.leaderboard-table tr:nth-child(2) {
    background: rgba(192, 192, 192, 0.1);
}

.leaderboard-table tr:nth-child(3) {
    background: rgba(205, 127, 50, 0.1);
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.feature-card {
    background: rgba(23, 23, 31, 0.8);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--rage-red);
    box-shadow: var(--shadow-neon);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--rage-red);
}

/* ===== TOKENOMICS SECTION ===== */
.tokenomics-section {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 204, 0, 0.1));
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.tokenomics-card {
    background: rgba(23, 23, 31, 0.8);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    backdrop-filter: blur(10px);
}

.tokenomics-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--rage-red);
}

.tokenomics-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--signal-yellow);
    margin-bottom: var(--space-sm);
}

.tokenomics-label {
    color: var(--paper);
    font-size: 1.1rem;
}

.taxes {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tax-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: rgba(255, 45, 45, 0.1);
    border-radius: var(--radius-lg);
}

.tax-value {
    font-weight: bold;
    color: var(--signal-yellow);
}

.liquidity-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.liquidity-status {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--signal-yellow);
}

.liquidity-duration {
    color: var(--paper);
    font-size: 1.1rem;
}

.distribution-chart {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.chart-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.chart-bar {
    width: var(--percentage);
    height: 20px;
    background: linear-gradient(90deg, var(--rage-red), var(--ember));
    border-radius: var(--radius-sm);
    transition: width var(--transition-slow);
}

.disclaimer {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 45, 45, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 45, 45, 0.3);
}

/* ===== BUY SECTION ===== */
.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.buy-step {
    background: rgba(23, 23, 31, 0.8);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--rage-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.buy-step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: var(--space-lg) 0 var(--space-md) 0;
    color: var(--rage-red);
}

.wallet-buttons,
.exchange-buttons,
.dex-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.contract-info {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(23, 23, 31, 0.8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 45, 45, 0.2);
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.contract-address code {
    font-family: 'Courier New', monospace;
    background: rgba(255, 45, 45, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    color: var(--signal-yellow);
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    background: linear-gradient(135deg, rgba(255, 122, 26, 0.1), rgba(255, 204, 0, 0.1));
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
}

.roadmap-quarter {
    background: rgba(23, 23, 31, 0.8);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
}

.quarter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 45, 45, 0.2);
}

.quarter-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--rage-red);
}

.quarter-status {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
}

.quarter-status.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.quarter-status.in-progress {
    background: rgba(255, 204, 0, 0.2);
    color: var(--signal-yellow);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.quarter-status.planned {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.quarter-items {
    list-style: none;
}

.quarter-items li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: var(--space-xl);
}

.quarter-items li:last-child {
    border-bottom: none;
}

.quarter-items li.completed {
    color: #22c55e;
}

.quarter-items li.in-progress {
    color: var(--signal-yellow);
}

.quarter-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rage-red);
    font-weight: bold;
}

/* ===== BETA SECTION ===== */
.beta-section {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 204, 0, 0.1));
}

.beta-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(245, 246, 250, 0.9);
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.beta-signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.beta-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.beta-feature {
    background: rgba(23, 23, 31, 0.8);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.beta-feature:hover {
    transform: translateY(-5px);
    border-color: var(--rage-red);
    box-shadow: var(--shadow-neon);
}

.beta-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.beta-feature h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--rage-red);
}

.beta-form-container {
    display: flex;
    justify-content: center;
    align-items: start;
}

.beta-form {
    background: rgba(23, 23, 31, 0.9);
    border: 2px solid var(--rage-red);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
}

.beta-form h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--rage-red);
    text-align: center;
}

.beta-form > p {
    text-align: center;
    color: rgba(245, 246, 250, 0.8);
    margin-bottom: var(--space-2xl);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input[type="email"],
.form-group input[type="text"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    color: var(--paper);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--rage-red);
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.1);
}

.form-group input::placeholder {
    color: rgba(245, 246, 250, 0.5);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(245, 246, 250, 0.8);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--rage-red);
}

.beta-disclaimer {
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: rgba(255, 45, 45, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
}

.beta-disclaimer p {
    font-size: 0.9rem;
    color: rgba(245, 246, 250, 0.7);
    margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 122, 26, 0.1));
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(23, 23, 31, 0.8);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--paper);
    padding: var(--space-xl);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(255, 45, 45, 0.1);
}

.faq-icon {
    transition: transform var(--transition-normal);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
    color: rgba(245, 246, 250, 0.8);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 45, 45, 0.2);
    padding: var(--space-3xl) 0 var(--space-xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--rage-red);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--rage-red);
    margin-bottom: var(--space-lg);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-md);
}

.footer-section ul li a {
    color: var(--paper);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--rage-red);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 45, 45, 0.1);
    border-radius: var(--radius-lg);
    color: var(--paper);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--rage-red);
    color: white;
    transform: translateY(-2px);
}

.contact-info p {
    color: var(--paper);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    color: var(--paper);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--rage-red);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .fortnite-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .island-code-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .coming-soon-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .leaderboard-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .beta-signup-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .beta-features {
        order: 2;
    }
    
    .beta-form-container {
        order: 1;
    }
    
    .buy-steps {
        grid-template-columns: 1fr;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .game-scene {
        width: 300px;
        height: 200px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .game-scene {
        width: 250px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav a:focus,
.faq-question:focus,
.tab-btn:focus {
    outline: 2px solid var(--rage-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --rage-red: #ff0000;
        --deep-crimson: #cc0000;
        --ember: #ff6600;
        --signal-yellow: #ffff00;
        --ink: #000000;
        --slate: #1a1a1a;
        --paper: #ffffff;
    }
}

/* Print styles */
@media print {
    .announcement-bar,
    .header,
    .hero-animation,
    .particles,
    .btn,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}
