@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:wght@300;400;600&display=swap');

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

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.top-navigation {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.main-nav {
    display: flex;
    gap: 10px;
    list-style: none;
}

.main-nav a {
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 20px;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    display: block;
    padding: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: rgba(255, 255, 255, 0.3);
}

.page-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 30px;
}

.hero-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    margin-bottom: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-card h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #f093fb, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card p {
    font-size: 24px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 1000px;
    margin: 0 auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.info-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 45px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.info-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.info-card ul,
.info-card ol {
    margin-left: 25px;
    margin-top: 15px;
}

.info-card li {
    font-size: 17px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 12px;
}

.main-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 55px;
    margin-bottom: 50px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.main-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.main-card h3 {
    font-size: 28px;
    margin: 35px 0 20px;
    color: #f093fb;
    font-weight: 600;
}

.main-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.main-card ul,
.main-card ol {
    margin-left: 30px;
    margin-bottom: 25px;
}

.main-card li {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.alert-card {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(79, 172, 254, 0.3));
    border-left: 5px solid #f093fb;
    padding: 35px;
    margin: 35px 0;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.alert-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.alert-card p {
    color: #ffffff;
    margin: 0;
}

.game-display {
    background: #000000;
    border-radius: 25px;
    overflow: hidden;
    margin: 40px 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.page-footer {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    padding: 55px 30px;
    margin-top: 70px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-nav a:hover {
    color: #f093fb;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 65px 55px;
    max-width: 600px;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.age-gate-card h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
}

.age-gate-card p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #f0f0f0;
}

.age-gate-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-gate-btn {
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
}

.age-gate-btn-yes {
    background: #ffffff;
    color: #667eea;
}

.age-gate-btn-yes:hover {
    background: #f0f0f0;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.age-gate-btn-no {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.age-gate-btn-no:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .top-navigation {
        padding: 12px 20px;
    }
    
    .site-logo {
        font-size: 24px;
    }
    
    .page-content {
        padding: 30px 20px;
    }
    
    .hero-card {
        padding: 50px 30px;
    }
    
    .hero-card h1 {
        font-size: 42px;
    }
    
    .hero-card p {
        font-size: 18px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-card {
        padding: 35px 25px;
    }
    
    .main-card {
        padding: 35px 25px;
    }
    
    .main-card h2 {
        font-size: 32px;
    }
    
    .game-display iframe {
        height: 500px;
    }
    
    .age-gate-card {
        padding: 45px 30px;
        margin: 20px;
    }
    
    .age-gate-card h2 {
        font-size: 28px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .age-gate-btn {
        width: 100%;
    }
}
