@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --neon-purple: #b19cd9;
    --neon-cyan: #00d4ff;
    --dark-purple: #2d1b4e;
    --darker: #0d0221;
    --bone-white: #f0e6d2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, var(--darker), var(--dark-purple));
    color: var(--bone-white);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/* Header Styles */
header {
    background: rgba(13, 2, 33, 0.95);
    padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--neon-purple);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-decoration: none;
    text-shadow: 0 0 20px var(--neon-cyan);
    letter-spacing: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--neon-purple);
    transition: 0.3s;
    box-shadow: 0 0 10px var(--neon-purple);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    font-family: 'Oswald', sans-serif;
    color: var(--bone-white);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-purple);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Main Content */
main {
    flex: 1;
    padding: 3rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 30px var(--neon-cyan);
}

.page-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--neon-purple);
}

/* Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: rgba(45, 27, 78, 0.5);
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(177, 156, 217, 0.2);
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(177, 156, 217, 0.4);
    border-color: var(--neon-cyan);
}

.info-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Warning Banner */
.warning-banner {
    background: linear-gradient(135deg, rgba(177, 156, 217, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.warning-banner::before {
    content: '⚠';
    position: absolute;
    font-size: 8rem;
    right: -20px;
    top: -20px;
    opacity: 0.1;
    color: var(--neon-cyan);
}

.warning-banner h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.warning-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--neon-purple);
}

/* Game Section */
.game-section {
    margin: 4rem 0;
    text-align: center;
}

.game-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--neon-purple);
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--neon-purple);
}

.game-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--neon-purple);
    display: inline-block;
    box-shadow: 0 0 50px rgba(177, 156, 217, 0.3);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: rgba(13, 2, 33, 0.95);
    padding: 3rem 2rem;
    border-top: 3px solid var(--neon-purple);
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--bone-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, var(--dark-purple), var(--darker));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    margin: 1rem;
}

.age-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.age-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn {
    font-family: 'Oswald', sans-serif;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-yes {
    background: var(--neon-cyan);
    color: var(--darker);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.btn-yes:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 30px var(--neon-purple);
    transform: scale(1.05);
}

.btn-no {
    background: transparent;
    color: var(--bone-white);
    border: 2px solid var(--bone-white);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

/* Content Pages */
.content-page {
    background: rgba(45, 27, 78, 0.3);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--neon-purple);
    line-height: 1.9;
}

.content-page h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.content-page h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--neon-purple);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.content-page p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--darker);
        transition: right 0.3s;
        padding-top: 5rem;
        border-left: 3px solid var(--neon-purple);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .age-content h2 {
        font-size: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
