@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --void-black: #000000;
    --deep-black: #0a0a0a;
    --charcoal: #1a1a1a;
    --blood-red: #8b0000;
    --crimson: #dc143c;
    --ember: #ff4444;
    --ghost-white: #f8f8f8;
    --ash-gray: #888888;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--void-black);
    color: var(--ghost-white);
    line-height: 1.75;
}

/* Age Confirmation */
.age-confirm {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-dialog {
    background: var(--deep-black);
    border: 1px solid var(--blood-red);
    padding: 55px 45px;
    max-width: 460px;
    text-align: center;
    box-shadow: 0 0 100px rgba(139, 0, 0, 0.3);
}

.age-dialog h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.2rem;
    color: var(--crimson);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.age-dialog p {
    color: var(--ash-gray);
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.age-choices {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.choice-btn {
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.choice-btn.enter {
    background: var(--blood-red);
    color: white;
}

.choice-btn.enter:hover {
    background: var(--crimson);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.5);
}

.choice-btn.leave {
    background: transparent;
    border: 1px solid var(--ash-gray);
    color: var(--ash-gray);
}

.choice-btn.leave:hover {
    border-color: var(--ember);
    color: var(--ember);
}

/* Header */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--void-black), transparent);
    padding: 20px 0;
}

.header-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: var(--crimson);
    text-decoration: none;
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    gap: 35px;
}

.header-nav a {
    color: var(--ghost-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-nav a:hover {
    color: var(--crimson);
}

/* Hamburger */
.ham-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.ham-menu span {
    width: 28px;
    height: 2px;
    background: var(--crimson);
    transition: all 0.3s;
}

.mobile-links {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--deep-black);
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--blood-red);
}

.mobile-links.shown {
    display: flex;
}

.mobile-links a {
    color: var(--ghost-white);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Hero */
.void-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 30px;
    background: radial-gradient(ellipse at center, var(--charcoal) 0%, var(--void-black) 70%);
    position: relative;
    overflow: hidden;
}

.void-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blood-red) 0%, transparent 70%);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

.hero-text {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-text h1 {
    font-family: 'Creepster', cursive;
    font-size: 4.5rem;
    color: var(--ghost-white);
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--ash-gray);
    margin-bottom: 40px;
}

.descent-btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--blood-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.descent-btn:hover {
    background: var(--crimson);
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
}

/* Warnings */
.warnings-section {
    padding: 80px 30px;
    background: var(--deep-black);
}

.warnings-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.warning-box {
    background: var(--charcoal);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 3px solid var(--blood-red);
}

.warning-box .w-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.warning-box h3 {
    font-family: 'Creepster', cursive;
    font-size: 1.4rem;
    color: var(--crimson);
    margin-bottom: 15px;
}

.warning-box p {
    color: var(--ash-gray);
    font-size: 0.95rem;
}

/* Game Section */
.game-section {
    padding: 80px 30px;
    background: var(--void-black);
}

.game-section h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.8rem;
    color: var(--crimson);
    text-align: center;
    margin-bottom: 50px;
}

.game-display {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--deep-black);
    padding: 15px;
    border: 2px solid var(--blood-red);
    box-shadow: 0 0 60px rgba(139, 0, 0, 0.2);
}

.game-display iframe {
    width: 100%;
    height: 620px;
    border: none;
}

/* About Section */
.about-section {
    padding: 80px 30px;
    background: var(--deep-black);
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-inner h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.2rem;
    color: var(--crimson);
    margin-bottom: 30px;
}

.about-inner p {
    color: var(--ash-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Features */
.features-section {
    padding: 80px 30px;
    background: var(--charcoal);
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 35px;
    background: var(--deep-black);
    border-left: 4px solid var(--blood-red);
}

.feature-card .icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.feature-card h3 {
    color: var(--ghost-white);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--ash-gray);
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background: var(--void-black);
    padding: 60px 30px;
    border-top: 1px solid var(--blood-red);
}

.footer-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrap > p {
    color: var(--ash-gray);
    margin-bottom: 25px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.support-links a {
    color: var(--crimson);
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover {
    color: var(--ember);
}

.footer-legal {
    padding-top: 25px;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    color: var(--ash-gray);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Page Styles */
.page-top {
    padding: 140px 30px 60px;
    background: var(--deep-black);
    text-align: center;
}

.page-top h1 {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: var(--crimson);
}

.page-content {
    padding: 60px 30px;
    background: var(--charcoal);
}

.page-content .inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-family: 'Creepster', cursive;
    font-size: 1.6rem;
    color: var(--crimson);
    margin: 35px 0 18px;
}

.page-content p {
    color: var(--ash-gray);
    margin-bottom: 15px;
}

.page-content ul {
    list-style: none;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-content ul li {
    color: var(--ash-gray);
    margin-bottom: 10px;
    position: relative;
}

.page-content ul li::before {
    content: '●';
    color: var(--crimson);
    position: absolute;
    left: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .ham-menu {
        display: flex;
    }
    
    .header-nav {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .warnings-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-display iframe {
        height: 420px;
    }
    
    .support-links {
        flex-direction: column;
        gap: 15px;
    }
}
