@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
    color: #fff;
    min-height: 100vh;
}

/* Top Navigation */
.top-nav {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.site-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4dd0e1;
    text-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

.main-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #4dd0e1;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4dd0e1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 188, 212, 0.1));
    margin: 2rem;
    border-radius: 20px;
}

.hero-banner h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(77, 208, 225, 0.3);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #4dd0e1;
    box-shadow: 0 10px 30px rgba(77, 208, 225, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #4dd0e1;
}

.info-card p {
    line-height: 1.8;
    font-weight: 300;
}

/* Content Block */
.content-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border-left: 5px solid #4dd0e1;
}

.content-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4dd0e1;
}

.content-block p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.content-block ul {
    list-style-position: inside;
    line-height: 2.2;
    font-weight: 300;
}

/* Game Section */
.game-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.game-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4dd0e1;
}

.game-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.game-embed {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: none;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 2px solid rgba(77, 208, 225, 0.3);
}

footer p {
    margin: 0.5rem 0;
    font-weight: 300;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.responsible-links a {
    color: #4dd0e1;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.responsible-links a:hover {
    opacity: 0.7;
}

/* Age Verification Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.show {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #0f2027, #2c5364);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #4dd0e1;
    box-shadow: 0 0 50px rgba(77, 208, 225, 0.5);
}

.verification-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4dd0e1;
}

.verification-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verification-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.verification-buttons button:hover {
    transform: scale(1.05);
}

.btn-confirm {
    background: #4dd0e1;
    color: #000;
}

.btn-decline {
    background: #e74c3c;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 2rem;
        gap: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-banner h2 {
        font-size: 2.2rem;
    }

    .hero-banner p {
        font-size: 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 400px;
    }

    .verification-box {
        margin: 1rem;
        padding: 2.5rem;
    }

    .verification-buttons {
        flex-direction: column;
    }

    .content-block {
        padding: 2rem;
    }
}
