@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
    color: #e0f7ff;
    min-height: 100vh;
}

.top-nav {
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 36px;
    font-weight: 800;
    color: #4dd0e1;
    text-shadow: 0 0 20px rgba(77, 208, 225, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #e0f7ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #4dd0e1;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #4dd0e1;
    margin: 6px 0;
    transition: 0.3s;
}

.main-wrapper {
    padding-top: 100px;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-banner {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(38, 198, 218, 0.1));
    border-radius: 30px;
    margin-bottom: 60px;
    border: 2px solid rgba(77, 208, 225, 0.2);
}

.hero-banner h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #4dd0e1;
    text-shadow: 0 0 30px rgba(77, 208, 225, 0.4);
}

.hero-banner p {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    color: #b8e8f5;
}

.warning-card {
    background: linear-gradient(135deg, rgba(255, 138, 101, 0.2), rgba(255, 107, 107, 0.2));
    border: 2px solid rgba(255, 138, 101, 0.4);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
}

.warning-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffab91;
}

.warning-card ul {
    list-style: none;
    padding: 0;
}

.warning-card li {
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 171, 145, 0.2);
}

.warning-card li:last-child {
    border-bottom: none;
}

.warning-card li:before {
    content: "🎯 ";
    margin-right: 15px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(77, 208, 225, 0.05);
    border: 2px solid rgba(77, 208, 225, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(77, 208, 225, 0.2);
}

.info-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #4dd0e1;
}

.info-card p {
    line-height: 1.8;
    color: #b8e8f5;
    font-size: 16px;
}

.content-block {
    background: rgba(77, 208, 225, 0.05);
    border: 2px solid rgba(77, 208, 225, 0.2);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #4dd0e1;
    font-weight: 700;
}

.content-block h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #80deea;
}

.content-block p {
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
    color: #b8e8f5;
}

.content-block ul, .content-block ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-block li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #b8e8f5;
}

.game-showcase {
    background: rgba(77, 208, 225, 0.05);
    border: 2px solid rgba(77, 208, 225, 0.2);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    text-align: center;
}

.game-showcase h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #4dd0e1;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.footer-section {
    background: rgba(15, 32, 39, 0.8);
    border-top: 2px solid rgba(77, 208, 225, 0.2);
    padding: 60px 30px 40px;
    margin-top: 80px;
    text-align: center;
}

.footer-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #4dd0e1;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links-row a {
    color: #80deea;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: #4dd0e1;
}

.age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-verification-modal.active {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #0f2027, #2c5364);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #4dd0e1;
    box-shadow: 0 0 50px rgba(77, 208, 225, 0.3);
}

.age-modal-box h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #4dd0e1;
}

.age-modal-box p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #b8e8f5;
}

.age-modal-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-modal-actions button {
    padding: 18px 50px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: #4dd0e1;
    color: #0f2027;
}

.btn-decline {
    background: #ff6b6b;
    color: #fff;
}

.age-modal-actions button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(77, 208, 225, 0.4);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 32, 39, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .hero-banner {
        padding: 50px 20px;
    }
    
    .hero-banner h1 {
        font-size: 36px;
    }
    
    .hero-banner p {
        font-size: 18px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .game-showcase {
        padding: 30px 20px;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .age-modal-box {
        padding: 40px 25px;
        margin: 20px;
    }
    
    .age-modal-box h2 {
        font-size: 32px;
    }
}
