@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #0a1828 0%, #1e3a5f 50%, #2e5090 100%);
    min-height: 100vh;
    color: #e0e7ef;
}

header {
    background: rgba(10, 24, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-bottom: 3px solid #00d4ff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00d4ff;
    text-transform: uppercase;
}

.brand-icon {
    font-size: 2.5rem;
    margin-right: 0.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #b8d4e8;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: #00d4ff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #00d4ff;
    transition: 0.3s;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-section {
    background: rgba(15, 30, 50, 0.8);
    border-radius: 25px;
    padding: 3.5rem;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.intro-section h1 {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 2;
    color: #c5d8e8;
    margin-bottom: 1.3rem;
}

.alert-panel {
    background: linear-gradient(135deg, #003d5c 0%, #004d73 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-left: 6px solid #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.alert-panel h2 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.8rem;
}

.alert-panel ul {
    list-style: none;
    padding-left: 0;
}

.alert-panel li {
    padding: 1rem 0;
    color: #d0e4f5;
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.alert-panel li:last-child {
    border-bottom: none;
}

.alert-panel li::before {
    content: "? ";
    color: #00d4ff;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.game-wrapper {
    background: rgba(15, 30, 50, 0.8);
    border-radius: 25px;
    padding: 3rem;
    margin: 2.5rem 0;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.game-wrapper h2 {
    color: #00d4ff;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-section {
    background: rgba(15, 30, 50, 0.8);
    border-radius: 25px;
    padding: 3.5rem;
    margin: 2.5rem 0;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.text-section h1 {
    color: #00d4ff;
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 800;
}

.text-section h2 {
    color: #4db8e8;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.text-section p {
    line-height: 2;
    color: #c5d8e8;
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
}

.text-section ul, .text-section ol {
    margin-left: 2.5rem;
    margin-bottom: 1.3rem;
    color: #c5d8e8;
}

.text-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.site-footer {
    background: rgba(10, 24, 40, 0.95);
    margin-top: 5rem;
    padding: 3rem 2rem;
    border-top: 3px solid #00d4ff;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h3 {
    color: #00d4ff;
    margin-bottom: 1.8rem;
    font-weight: 700;
    font-size: 1.6rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.footer-nav a {
    color: #b8d4e8;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-nav a:hover {
    color: #00d4ff;
}

.footer-inner p {
    color: #6b8aa3;
    margin-top: 1.5rem;
}

.verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verification-overlay.active {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #0a1828 0%, #1e3a5f 100%);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 3px solid #00d4ff;
}

.verification-box h2 {
    color: #00d4ff;
    margin-bottom: 1.8rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.verification-box p {
    color: #c5d8e8;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.verification-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.verification-actions button {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.verification-actions button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-confirm {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #0a1828;
}

.btn-decline {
    background: #2a3f5f;
    color: #b8d4e8;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: rgba(10, 24, 40, 0.98);
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 2.5rem;
        gap: 0;
    }
    
    .main-nav ul li {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .intro-section h1 {
        font-size: 2.2rem;
    }
    
    .intro-section, .text-section {
        padding: 2.5rem;
    }
    
    .text-section h1 {
        font-size: 2.2rem;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.2rem;
    }
}
