@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;900&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a0033;
    color: #e0d7f0;
    overflow-x: hidden;
}

.top-bar {
    background: linear-gradient(90deg, #2d0050 0%, #4a0080 50%, #2d0050 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5000;
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.3);
}

.brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.nav-trigger {
    display: none;
    background: #00ffff;
    border: none;
    color: #1a0033;
    font-size: 2rem;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    font-weight: 900;
    border-radius: 5px;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.navigation a {
    color: #e0d7f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.navigation a:hover {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.content-wrapper {
    margin-top: 80px;
    padding: 3rem;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-banner {
    background: linear-gradient(135deg, #4a0080 0%, #2d0050 100%);
    padding: 4rem;
    margin-bottom: 4rem;
    border-radius: 30px;
    border: 3px solid #00ffff;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.intro-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

h1 {
    font-size: 5rem;
    font-weight: 900;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    text-transform: uppercase;
    margin: 3rem 0 2rem;
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.4rem;
    color: #b8a9d0;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.two-column {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.content-block {
    background: rgba(45, 0, 80, 0.4);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    line-height: 1.9;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #00ffff 0%, #00b8b8 100%);
    color: #1a0033;
    padding: 2.5rem;
    border-radius: 20px;
    font-weight: 500;
}

.highlight-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.alert-section {
    background: linear-gradient(135deg, #ff0080 0%, #c00060 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: #fff;
}

.alert-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.alert-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.game-area {
    background: rgba(45, 0, 80, 0.6);
    padding: 4rem;
    border-radius: 30px;
    margin: 4rem 0;
    border: 4px solid #00ffff;
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.3);
}

.game-window {
    max-width: 1300px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 255, 255, 0.4);
}

.game-window iframe {
    width: 100%;
    height: 850px;
    border: none;
    display: block;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: linear-gradient(135deg, rgba(74, 0, 128, 0.6) 0%, rgba(45, 0, 80, 0.6) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3);
}

.feature-item h3 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.site-footer {
    background: #0d001a;
    padding: 3rem;
    margin-top: 5rem;
    text-align: center;
    border-top: 5px solid #00ffff;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: #00ffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}

.footer-nav a:hover {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.9);
    color: #66ffff;
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 0, 26, 0.98);
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

.age-check.active {
    display: flex;
}

.age-check-box {
    background: linear-gradient(135deg, #2d0050 0%, #4a0080 100%);
    padding: 4rem;
    border-radius: 35px;
    text-align: center;
    max-width: 700px;
    border: 5px solid #00ffff;
    box-shadow: 0 0 100px rgba(0, 255, 255, 0.5);
}

.age-check h2 {
    font-size: 4rem;
    margin-top: 0;
}

.age-check p {
    font-size: 1.3rem;
    margin: 2rem 0;
    line-height: 2;
}

.age-options {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-option {
    padding: 1.5rem 4.5rem;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-option.yes {
    background: #00ffff;
    color: #1a0033;
}

.age-option.yes:hover {
    background: #66ffff;
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.5);
}

.age-option.no {
    background: #ff0080;
    color: #fff;
}

.age-option.no:hover {
    background: #ff4da6;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .nav-trigger {
        display: block;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #1a0033;
        transition: left 0.3s;
        padding-top: 6rem;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.8);
    }
    
    .navigation.open {
        left: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .navigation a {
        display: block;
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .intro-banner {
        padding: 3rem 2rem;
    }
    
    .game-window iframe {
        height: 550px;
    }
    
    .age-check-box {
        margin: 1rem;
        padding: 3rem 2rem;
    }
    
    .age-check h2 {
        font-size: 2.5rem;
    }
    
    .age-options {
        flex-direction: column;
        gap: 1.5rem;
    }
}
