@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Audiowide&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #050510;
    color: #d4e4ff;
    line-height: 1.75;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(88, 101, 242, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(66, 153, 225, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.top-bar {
    background: linear-gradient(135deg, rgba(5, 5, 16, 0.97) 0%, rgba(10, 10, 25, 0.97) 100%);
    padding: 2rem 4rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 35px rgba(88, 101, 242, 0.35);
    border-bottom: 2px solid rgba(88, 101, 242, 0.4);
    backdrop-filter: blur(12px);
}

.top-bar-inner {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-title {
    font-family: 'Audiowide', cursive;
    font-size: 2.8rem;
    font-weight: 400;
    color: #5865f2;
    text-decoration: none;
    text-shadow: 0 0 35px rgba(88, 101, 242, 0.7), 0 0 70px rgba(88, 101, 242, 0.3);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.site-title::after {
    content: ' ◉';
    color: #4299e1;
    font-size: 1.5rem;
}

.hamburger-btn {
    display: none;
    background: rgba(88, 101, 242, 0.15);
    border: 2px solid #5865f2;
    color: #5865f2;
    font-size: 1.7rem;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(88, 101, 242, 0.3);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 4rem;
}

.main-menu a {
    color: #cbd5f5;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #5865f2;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
}

.main-menu a:hover::before {
    width: 6px;
    height: 6px;
}

.main-menu a:hover {
    color: #5865f2;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

.banner-area {
    padding: 8rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(88, 101, 242, 0.06) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.banner-text {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-family: 'Audiowide', cursive;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #fff;
    text-shadow: 0 0 50px rgba(88, 101, 242, 0.6), 0 0 100px rgba(88, 101, 242, 0.3);
    line-height: 1.15;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2 {
    font-family: 'Audiowide', cursive;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #4299e1;
    text-shadow: 0 0 30px rgba(66, 153, 225, 0.5);
    text-transform: uppercase;
}

.banner-area p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: #cbd5f5;
    line-height: 1.9;
    font-weight: 300;
}

.primary-link {
    display: inline-block;
    background: linear-gradient(135deg, #5865f2 0%, #4299e1 100%);
    color: #fff;
    padding: 1.5rem 4.5rem;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 3px solid transparent;
}

.primary-link:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 55px rgba(88, 101, 242, 0.7), 0 0 40px rgba(88, 101, 242, 0.4);
    border-color: #8b5cf6;
}

.main-container {
    max-width: 1700px;
    margin: 6rem auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3.5rem;
    margin: 5rem 0;
}

.feature-item {
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.8) 0%, rgba(5, 5, 16, 0.8) 100%);
    padding: 4rem;
    border-radius: 20px;
    border: 2px solid rgba(88, 101, 242, 0.25);
    transition: all 0.4s ease;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.feature-item:hover {
    border-color: #5865f2;
    transform: translateY(-12px);
    box-shadow: 0 20px 70px rgba(88, 101, 242, 0.25);
}

.feature-item h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
    color: #4299e1;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 1.1rem;
    color: #cbd5f5;
    line-height: 1.85;
    font-weight: 300;
}

.game-frame {
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.9) 0%, rgba(5, 5, 16, 0.9) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    margin: 5rem auto;
    max-width: 1500px;
    border: 3px solid rgba(88, 101, 242, 0.4);
    box-shadow: 0 25px 90px rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(8px);
}

.game-frame iframe {
    width: 100%;
    height: 850px;
    border: none;
    border-radius: 15px;
}

.info-block {
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.7) 0%, rgba(5, 5, 16, 0.7) 100%);
    padding: 4.5rem;
    border-radius: 20px;
    margin: 5rem 0;
    border-top: 4px solid #5865f2;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.info-block h3 {
    font-family: 'Audiowide', cursive;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #4299e1;
    text-transform: uppercase;
}

.info-block p {
    font-size: 1.12rem;
    margin-bottom: 1.8rem;
    color: #cbd5f5;
    line-height: 1.9;
    font-weight: 300;
}

.info-block ul {
    list-style: none;
    padding-left: 0;
}

.info-block li {
    padding: 1.2rem 0;
    font-size: 1.12rem;
    color: #cbd5f5;
    border-bottom: 1px solid rgba(88, 101, 242, 0.15);
    line-height: 1.85;
    font-weight: 300;
}

.info-block li::before {
    content: '◉ ';
    color: #5865f2;
    font-weight: bold;
    margin-right: 1.2rem;
}

.bottom-bar {
    background: linear-gradient(135deg, rgba(5, 5, 16, 0.97) 0%, rgba(10, 10, 25, 0.97) 100%);
    padding: 5rem 4rem;
    margin-top: 8rem;
    border-top: 2px solid rgba(88, 101, 242, 0.4);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(12px);
}

.bottom-bar-inner {
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
}

.bottom-bar h3 {
    font-family: 'Audiowide', cursive;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #4299e1;
    text-transform: uppercase;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.resource-links a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
}

.resource-links a:hover {
    color: #5865f2;
    text-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
}

.bottom-bar p {
    color: #7d8bb8;
    margin-top: 3rem;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate-panel {
    background: linear-gradient(135deg, #0a0a19 0%, #050510 100%);
    padding: 4.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 650px;
    border: 4px solid #5865f2;
    box-shadow: 0 40px 110px rgba(88, 101, 242, 0.5);
    backdrop-filter: blur(20px);
}

.age-gate-panel h2 {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #fff;
    text-transform: uppercase;
}

.age-gate-panel p {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    color: #cbd5f5;
    line-height: 1.85;
    font-weight: 300;
}

.age-gate-options {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.age-gate-options button {
    padding: 1.4rem 4rem;
    font-size: 1.12rem;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-options .accept-btn {
    background: linear-gradient(135deg, #5865f2, #4299e1);
    color: #fff;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.5);
}

.age-gate-options .accept-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 55px rgba(88, 101, 242, 0.7);
}

.age-gate-options .reject-btn {
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5f5;
    border: 2px solid #5865f2;
}

.age-gate-options .reject-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(5, 5, 16, 0.99);
        padding: 8rem 4rem;
        transition: right 0.4s ease;
        border-left: 2px solid #5865f2;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(15px);
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu ul {
        flex-direction: column;
        gap: 3.5rem;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .banner-area {
        padding: 6rem 2.5rem;
    }
    
    .feature-boxes {
        grid-template-columns: 1fr;
    }
    
    .game-frame iframe {
        height: 650px;
    }
    
    .age-gate-panel {
        margin: 2.5rem;
        padding: 3.5rem;
    }
    
    .age-gate-options {
        flex-direction: column;
    }
    
    .resource-links {
        flex-direction: column;
        gap: 2.5rem;
    }
}
