@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Roboto:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0015;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 200, 0.1) 0%, transparent 50%);
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
}

header {
    background: rgba(20, 0, 40, 0.9);
    padding: 1.2rem 2.5rem;
    border-bottom: 3px solid #7800ff;
    box-shadow: 0 5px 30px rgba(120, 0, 255, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo {
    width: 55px;
    height: 55px;
    filter: drop-shadow(0 0 10px rgba(120, 0, 255, 0.6));
}

.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #7800ff;
    text-shadow: 0 0 20px rgba(120, 0, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 32px;
    height: 4px;
    background: linear-gradient(90deg, #7800ff, #00ffc8);
    transition: 0.3s;
    border-radius: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    color: #00ffc8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7800ff, #00ffc8);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #7800ff;
    text-shadow: 0 0 10px rgba(120, 0, 255, 0.8);
}

main {
    width: 100%;
    padding: 0;
}

.hero-area {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(120, 0, 255, 0.2) 0%, rgba(0, 255, 200, 0.2) 100%);
    border-bottom: 3px solid #7800ff;
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(120, 0, 255, 0.03) 2px,
        rgba(120, 0, 255, 0.03) 4px
    );
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-area h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(120, 0, 255, 0.9), 0 0 60px rgba(0, 255, 200, 0.5);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-area p {
    font-size: 1.25rem;
    color: #c0c0c0;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 2;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.alert-item {
    background: rgba(20, 0, 40, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #7800ff;
    box-shadow: 0 10px 40px rgba(120, 0, 255, 0.3);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.alert-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(120, 0, 255, 0.5);
    border-color: #00ffc8;
}

.alert-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffc8;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.alert-item p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.gaming-area {
    background: rgba(20, 0, 40, 0.7);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid #7800ff;
    box-shadow: 0 10px 40px rgba(120, 0, 255, 0.3);
}

.gaming-area h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    color: #7800ff;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(120, 0, 255, 0.6);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    background: #000;
    box-shadow: inset 0 0 30px rgba(120, 0, 255, 0.4);
}

.info-panel {
    background: rgba(20, 0, 40, 0.7);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 5px solid #00ffc8;
    box-shadow: 0 10px 40px rgba(0, 255, 200, 0.2);
}

.info-panel h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffc8;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.info-panel p {
    color: #c0c0c0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 2;
}

.info-panel ul {
    margin-left: 2.5rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
}

.info-panel ul li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

footer {
    background: rgba(20, 0, 40, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid #7800ff;
    box-shadow: 0 -5px 30px rgba(120, 0, 255, 0.4);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #00ffc8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.footer-menu a:hover {
    color: #7800ff;
    text-shadow: 0 0 10px rgba(120, 0, 255, 0.8);
}

.footer-info {
    color: #808080;
    font-size: 0.95rem;
    line-height: 1.8;
}

.verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 21, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.verification-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 0, 40, 0.95) 0%, rgba(10, 0, 21, 0.95) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 2rem;
    border: 3px solid #7800ff;
    box-shadow: 0 20px 60px rgba(120, 0, 255, 0.6);
}

.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffc8;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 255, 200, 0.6);
}

.modal-content p {
    color: #c0c0c0;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 2;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-buttons button {
    padding: 1.2rem 3.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.btn-accept {
    background: linear-gradient(135deg, #7800ff, #00ffc8);
    color: #fff;
    box-shadow: 0 5px 20px rgba(120, 0, 255, 0.5);
}

.btn-accept:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(120, 0, 255, 0.8);
}

.btn-reject {
    background: linear-gradient(135deg, #ff0055, #ff4400);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.5);
}

.btn-reject:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 0, 85, 0.8);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(20, 0, 40, 0.98);
        transition: left 0.3s;
        padding-top: 80px;
        backdrop-filter: blur(15px);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    nav ul li {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(120, 0, 255, 0.3);
    }

    .hero-area h1 {
        font-size: 2.5rem;
    }

    .hero-area p {
        font-size: 1.1rem;
    }

    .alert-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .modal-content {
        padding: 2.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons button {
        width: 100%;
    }
}
