@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0c29;
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
    color: #333;
    line-height: 1.6;
}

/* Header Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #E91E63;
    border-radius: 3px;
    transition: 0.3s;
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-section {
    background: white;
    border-radius: 30px;
    padding: 80px 60px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
}

.subtitle {
    font-size: 22px;
    color: #666;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #E91E63;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Content Section */
.content-section {
    background: white;
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
    color: white;
    padding: 35px 40px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 6px solid #C92A2A;
    box-shadow: 0 10px 30px rgba(238, 90, 111, 0.4);
}

.alert-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.alert-box p {
    color: white;
    font-size: 17px;
    margin: 0;
}

/* Game Embed */
.game-section {
    background: white;
    border-radius: 30px;
    padding: 60px;
    margin: 50px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.game-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.game-iframe {
    width: 100%;
    max-width: 900px;
    height: 650px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 50px 30px;
    margin-top: 80px;
    border-radius: 30px 30px 0 0;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.responsible-links a {
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.responsible-links a:hover {
    color: #C2185B;
}

.footer-text {
    color: #bdc3c7;
    font-size: 15px;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 41, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-gate.visible {
    display: flex;
}

.age-gate-card {
    background: white;
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-gate-card h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.age-gate-card p {
    font-size: 19px;
    color: #666;
    margin-bottom: 40px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    color: white;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.age-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.5);
}

.age-btn-no {
    background: #e74c3c;
    color: white;
}

.age-btn-no:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .brand {
        font-size: 28px;
    }

    .hero-section {
        padding: 50px 30px;
    }

    h1 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 18px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .content-section,
    .game-section {
        padding: 40px 25px;
    }

    h2 {
        font-size: 32px;
    }

    .game-iframe {
        height: 450px;
    }

    .responsible-links {
        flex-direction: column;
        gap: 20px;
    }

    .age-gate-card {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-gate-card h2 {
        font-size: 28px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
