@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #1a1f4d 0%, #0a0e27 60%);
    z-index: -1;
}

header {
    background: rgba(20, 25, 60, 0.9);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 30px rgba(138, 43, 226, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: #9d4edd;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
}

.top-nav {
    display: flex;
    gap: 2rem;
}

.top-nav a {
    color: #c4c4c4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 5px;
    letter-spacing: 1px;
}

.top-nav a:hover {
    color: #9d4edd;
    border-color: #9d4edd;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: #9d4edd;
    transition: 0.3s;
    border-radius: 2px;
}

main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-banner {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(138, 43, 226, 0.05) 100%);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 15px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 50px rgba(138, 43, 226, 0.2);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #9d4edd;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #9d4edd;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    color: #b388f7;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.25rem;
    color: #b8b8b8;
    letter-spacing: 1px;
}

.alerts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.alert-panel {
    background: rgba(20, 25, 60, 0.7);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alert-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.5s ease;
}

.alert-panel:hover::before {
    left: 100%;
}

.alert-panel:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 12px 45px rgba(255, 193, 7, 0.3);
}

.info-section {
    background: rgba(20, 25, 60, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
}

.info-section p {
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
    color: #d0d0d0;
}

.info-section ul {
    margin: 1.5rem 0 1.5rem 2.5rem;
}

.info-section li {
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    color: #d0d0d0;
}

.game-zone {
    background: rgba(20, 25, 60, 0.7);
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 50px rgba(138, 43, 226, 0.3);
}

.game-player {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: 2px solid #9d4edd;
    border-radius: 10px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.4);
}

footer {
    background: rgba(20, 25, 60, 0.95);
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 2px solid rgba(157, 78, 221, 0.5);
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: #9d4edd;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b388f7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #9d4edd;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

/* Age Verification */
.age-verify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-panel {
    background: linear-gradient(135deg, rgba(20, 25, 60, 0.95) 0%, rgba(26, 31, 77, 0.95) 100%);
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #9d4edd;
    box-shadow: 0 0 80px rgba(157, 78, 221, 0.6);
}

.age-panel h2 {
    margin-bottom: 1.5rem;
    color: #9d4edd;
}

.age-panel p {
    margin-bottom: 2rem;
    color: #c4c4c4;
    font-size: 1.1rem;
}

.age-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid #9d4edd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.age-approve {
    background: #9d4edd;
    color: #0a0e27;
}

.age-approve:hover {
    background: #b388f7;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

.age-reject {
    background: transparent;
    color: #9d4edd;
}

.age-reject:hover {
    background: rgba(157, 78, 221, 0.2);
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: rgba(20, 25, 60, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .top-nav.active {
        right: 0;
    }

    .brand-logo {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 2rem;
    }

    .game-player {
        height: 500px;
    }

    .alerts-container {
        grid-template-columns: 1fr;
    }
}
