/* Astravortex.xyz - Fiery Energy Theme */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Teko:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ember-core: #ff4500;
    --magma-glow: #ff6b35;
    --void-black: #0d0d0d;
    --ash-gray: #2a2a2a;
    --smoke-light: #e8e8e8;
    --solar-gold: #ffd700;
    --deep-crimson: #8b0000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--void-black);
    color: var(--smoke-light);
    line-height: 1.6;
    font-weight: 500;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,69,0,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,107,53,0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139,0,0,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13,13,13,0.98) 0%, rgba(13,13,13,0.9) 100%);
    border-bottom: 2px solid var(--ember-core);
}

.header-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-svg {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--ember-core), var(--solar-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    gap: 0.5rem;
}

.desktop-nav a {
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--smoke-light);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ember-core);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.desktop-nav a:hover {
    color: var(--ember-core);
}

.desktop-nav a:hover::after {
    width: 80%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--ember-core);
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(13,13,13,0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 998;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: var(--smoke-light);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--ember-core);
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 2rem 60px;
    background: 
        linear-gradient(135deg, rgba(139,0,0,0.3) 0%, transparent 50%),
        linear-gradient(225deg, rgba(255,69,0,0.2) 0%, transparent 50%);
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.hero-banner h1 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.hero-banner h1 span {
    display: block;
    background: linear-gradient(90deg, var(--ember-core), var(--magma-glow), var(--solar-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: rgba(232,232,232,0.85);
}

/* Alert Boxes */
.alert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.alert-box {
    background: linear-gradient(135deg, rgba(42,42,42,0.8) 0%, rgba(13,13,13,0.9) 100%);
    border-left: 4px solid var(--ember-core);
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.alert-box:hover {
    transform: translateX(8px);
    border-color: var(--solar-gold);
}

.alert-box h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    color: var(--ember-core);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.alert-box p {
    font-size: 0.95rem;
    color: rgba(232,232,232,0.8);
}

/* Game Arena */
.game-arena {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(139,0,0,0.1) 50%, transparent 100%);
}

.arena-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.arena-title {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    color: var(--solar-gold);
}

.game-frame {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    background: var(--ash-gray);
    border: 3px solid var(--ember-core);
    box-shadow: 0 0 50px rgba(255,69,0,0.3), inset 0 0 30px rgba(0,0,0,0.5);
}

.game-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Text Sections */
.text-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-block h2 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: var(--ember-core);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ash-gray);
    letter-spacing: 2px;
}

.text-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: rgba(232,232,232,0.9);
}

.text-block ul {
    list-style: none;
    margin: 1.5rem 0;
}

.text-block ul li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255,69,0,0.2);
}

.text-block ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--ember-core);
    font-size: 1.2rem;
}

/* Info Cards */
.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--ash-gray);
    padding: 2rem;
    border-top: 3px solid var(--ember-core);
    transition: background 0.3s ease;
}

.info-card:hover {
    background: rgba(255,69,0,0.1);
}

.info-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    color: var(--solar-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Page Title */
.page-title-section {
    padding-top: 130px;
    padding-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--ember-core);
    margin-bottom: 2rem;
}

.page-title-section h1 {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--ember-core);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--ash-gray) 0%, var(--void-black) 100%);
    border-top: 2px solid var(--ember-core);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h4 {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    color: var(--solar-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.support-links a {
    color: rgba(232,232,232,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.support-links a:hover {
    color: var(--ember-core);
}

.footer-copy {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,69,0,0.3);
    font-size: 0.85rem;
    color: rgba(232,232,232,0.5);
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-gate.dismissed {
    display: none;
}

.age-gate-box {
    background: var(--ash-gray);
    border: 2px solid var(--ember-core);
    padding: 3rem;
    max-width: 480px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 0 60px rgba(255,69,0,0.4);
}

.age-gate-box h2 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: var(--ember-core);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.age-gate-box p {
    margin-bottom: 2rem;
    color: rgba(232,232,232,0.9);
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-gate-btn {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    padding: 0.8rem 2.5rem;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.age-gate-btn.confirm {
    background: var(--ember-core);
    color: var(--void-black);
}

.age-gate-btn.confirm:hover {
    background: var(--solar-gold);
}

.age-gate-btn.deny {
    background: transparent;
    border: 2px solid var(--smoke-light);
    color: var(--smoke-light);
}

.age-gate-btn.deny:hover {
    border-color: var(--deep-crimson);
    color: var(--deep-crimson);
}

/* Responsive */
@media (max-width: 900px) {
    .alert-grid {
        grid-template-columns: 1fr;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-wrap {
        padding: 0.8rem 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-banner {
        padding-top: 100px;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner p {
        font-size: 1.1rem;
    }
    
    .text-block {
        padding: 2rem 1rem;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .support-links {
        flex-direction: column;
        gap: 1rem;
    }
}
