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

body {
    font-family: 'Barlow', sans-serif;
    background: #18181b;
    color: #fafafa;
    line-height: 1.6;
    overflow-x: hidden;
}

.age-blocker {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(245, 158, 11, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(20px);
}

.age-blocker.hidden {
    display: none;
}

.blocker-content {
    background: #18181b;
    padding: 3.5rem;
    border-radius: 25px;
    max-width: 500px;
    text-align: center;
    border: 4px solid #f59e0b;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.blocker-badge {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.blocker-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blocker-message {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.blocker-requirement {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fafafa;
    margin: 1.5rem 0 2rem;
}

.blocker-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-confirm, .action-reject {
    padding: 1.3rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
}

.action-confirm {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.action-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.action-reject {
    background: #27272a;
    color: #d4d4d8;
}

.action-reject:hover {
    background: #3f3f46;
}

.top-nav {
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    border-bottom: 3px solid #f59e0b;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-title {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.menu-link {
    color: #d4d4d8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.menu-link:hover, .menu-link.active {
    color: #f59e0b;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    transition: width 0.3s;
}

.menu-link:hover::after, .menu-link.active::after {
    width: 100%;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-line {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.nav-burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.splash-hero {
    position: relative;
    background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1), transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-family: 'Righteous', cursive;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.4rem;
    color: #d4d4d8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.6);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.alert-section {
    padding: 6rem 0;
    background: #18181b;
}

.section-label {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f59e0b;
    text-transform: uppercase;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.alert-item {
    padding: 3rem;
    border-radius: 20px;
    background: #27272a;
    border: 3px solid;
    transition: all 0.3s;
}

.alert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.alert-item.red {
    border-color: #ef4444;
}

.alert-item.amber {
    border-color: #fbbf24;
}

.alert-item.orange {
    border-color: #f59e0b;
}

.alert-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.alert-item h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fafafa;
}

.alert-item p {
    color: #d4d4d8;
    line-height: 1.8;
    font-size: 1.05rem;
}

.game-spotlight {
    padding: 6rem 0;
    background: #27272a;
}

.spotlight-title {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #f59e0b;
    text-transform: uppercase;
}

.spotlight-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #d4d4d8;
}

.game-display-box {
    background: #18181b;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #f59e0b;
    margin-bottom: 2.5rem;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border-radius: 15px;
}

.game-info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #18181b;
    padding: 1.8rem;
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
    color: #d4d4d8;
}

.perks-section {
    padding: 6rem 0;
    background: #18181b;
}

.perks-heading {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #f59e0b;
    text-transform: uppercase;
}

.perks-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.perk-card {
    background: #27272a;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #3f3f46;
    transition: all 0.3s;
}

.perk-card:hover {
    border-color: #f59e0b;
    transform: translateY(-5px);
}

.perk-symbol {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.perk-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fafafa;
}

.perk-card p {
    color: #d4d4d8;
    line-height: 1.7;
}

.story-section {
    padding: 6rem 0;
    background: #27272a;
}

.story-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #18181b;
    padding: 4rem;
    border-radius: 20px;
    border: 3px solid #f59e0b;
}

.story-title {
    font-family: 'Righteous', cursive;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #f59e0b;
    text-transform: uppercase;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #d4d4d8;
}

.site-footer {
    background: #18181b;
    padding: 4rem 0 2rem;
    border-top: 3px solid #f59e0b;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #f59e0b;
    text-transform: uppercase;
}

.footer-col p {
    color: #a1a1aa;
    margin-bottom: 0.8rem;
}

.footer-col a {
    display: block;
    color: #d4d4d8;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: #f59e0b;
    padding-left: 0.5rem;
}

.footer-highlight {
    color: #f59e0b;
    font-weight: 700;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3f3f46;
    color: #a1a1aa;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #27272a;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .game-iframe {
        height: 500px;
    }
}

@media (max-width: 640px) {
    .blocker-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }
    
    .blocker-content h2 {
        font-size: 2rem;
    }
    
    .splash-hero {
        padding: 5rem 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.15rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-label, .spotlight-title, .perks-heading {
        font-size: 2rem;
    }
    
    .alert-grid {
        grid-template-columns: 1fr;
    }
    
    .game-display-box {
        padding: 1rem;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .game-info-bar {
        grid-template-columns: 1fr;
    }
    
    .perks-wrap {
        grid-template-columns: 1fr;
    }
    
    .story-wrapper {
        padding: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
