@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background: linear-gradient(90deg, #1a1f3a 0%, #2d3561 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06ffa5 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06ffa5, #00d4ff);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #06ffa5;
    border-radius: 3px;
    transition: 0.3s;
}

/* Main Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #06ffa5 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.2rem;
    margin: 2.5rem 0 1.2rem;
    font-weight: 700;
    color: #06ffa5;
}

h3 {
    font-size: 1.6rem;
    margin: 1.8rem 0 1rem;
    font-weight: 600;
    color: #00d4ff;
}

p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    color: #c0c0c0;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #ff6b6b20 0%, #ee557520 100%);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.alert-box h3 {
    color: #ff6b6b;
    margin-top: 0;
}

.alert-box ul {
    margin-top: 1rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(6, 255, 165, 0.1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 255, 165, 0.2);
    border-color: rgba(6, 255, 165, 0.3);
}

.info-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.info-card p {
    color: #b0b0b0;
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.game-section iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: #0d1129;
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid #06ffa5;
}

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

.footer-content h3 {
    color: #06ffa5;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #06ffa5;
}

/* Age Verification Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(15px);
}

.age-gate.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #06ffa5;
    box-shadow: 0 30px 80px rgba(6, 255, 165, 0.3);
}

.age-gate-box h2 {
    font-size: 2.8rem;
    margin: 0 0 1.5rem 0;
    color: #06ffa5;
}

.age-gate-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-btn {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-confirm {
    background: linear-gradient(135deg, #06ffa5 0%, #00d4ff 100%);
    color: #0a0e27;
}

.age-btn-confirm:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(6, 255, 165, 0.4);
}

.age-btn-deny {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5575 100%);
    color: white;
}

.age-btn-deny:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #1a1f3a;
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .page-container {
        padding: 2rem 1.5rem;
    }

    .game-section iframe {
        height: 450px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-gate-box {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
