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

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: radial-gradient(ellipse at center, #1a0825 0%, #0d0412 100%);
    color: #e4d8f0;
    min-height: 100vh;
    line-height: 1.8;
}

a {
    color: #e040fb;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: #f8a5ff;
    text-shadow: 0 0 15px rgba(224, 64, 251, 0.6);
}

.nav-bar {
    background: rgba(13, 4, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 800;
    border-bottom: 1px solid rgba(224, 64, 251, 0.3);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area svg {
    width: 46px;
    height: 46px;
    filter: drop-shadow(0 0 10px rgba(224, 64, 251, 0.5));
}

.logo-name {
    font-size: 1.7rem;
    font-weight: 600;
    color: #e040fb;
    letter-spacing: 1px;
}

.burger-btn {
    display: none;
    background: transparent;
    border: 1px solid #e040fb;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e040fb;
    margin: 5px 0;
    border-radius: 2px;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e4d8f0;
    border-radius: 8px;
}

.nav-links a:hover {
    background: rgba(224, 64, 251, 0.15);
    color: #e040fb;
}

.main-wrapper {
    padding-top: 80px;
}

.intro-area {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.intro-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 64, 251, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.intro-area h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e040fb;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(224, 64, 251, 0.4);
    position: relative;
}

.intro-area p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    opacity: 0.9;
    position: relative;
}

.status-badges {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    position: relative;
}

.status-badge {
    background: rgba(224, 64, 251, 0.1);
    border: 1px solid rgba(224, 64, 251, 0.4);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 0 20px rgba(224, 64, 251, 0.1);
}

.play-area {
    padding: 4rem 2rem;
}

.play-area h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #e040fb;
    margin-bottom: 2rem;
    font-weight: 500;
}

.game-window {
    max-width: 1350px;
    margin: 0 auto;
    background: rgba(26, 8, 37, 0.8);
    border: 1px solid rgba(224, 64, 251, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 0 50px rgba(224, 64, 251, 0.15);
}

.game-window iframe {
    width: 100%;
    height: 570px;
    border: none;
    border-radius: 12px;
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 4rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(26, 8, 37, 0.6);
    border: 1px solid rgba(224, 64, 251, 0.2);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #e040fb;
    box-shadow: 0 0 30px rgba(224, 64, 251, 0.2);
    transform: translateY(-3px);
}

.feature-item h3 {
    color: #e040fb;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.85;
}

.text-page {
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-page h1 {
    font-size: 2.8rem;
    color: #e040fb;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.text-page h2 {
    font-size: 1.25rem;
    color: #e040fb;
    margin: 2.5rem 0 1rem;
    font-weight: 500;
}

.text-page p {
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.9;
}

.text-page ul, .text-page ol {
    margin: 1rem 0 1.5rem 1.5rem;
    font-weight: 300;
}

.text-page li {
    margin-bottom: 0.5rem;
}

.page-footer {
    background: rgba(8, 2, 12, 0.9);
    border-top: 1px solid rgba(224, 64, 251, 0.2);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

.footer-center h4 {
    color: #e040fb;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.support-resources {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
}

.verification-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 2, 12, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verification-panel {
    background: linear-gradient(160deg, rgba(40, 12, 58, 0.9), rgba(20, 6, 30, 0.95));
    border: 1px solid #e040fb;
    border-radius: 24px;
    padding: 3rem;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 80px rgba(224, 64, 251, 0.3);
}

.verification-panel h2 {
    color: #e040fb;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.verification-panel p {
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-button {
    padding: 0.9rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.verify-button.confirm {
    background: linear-gradient(135deg, #e040fb, #c030d0);
    color: white;
}

.verify-button.confirm:hover {
    box-shadow: 0 0 30px rgba(224, 64, 251, 0.5);
    transform: scale(1.05);
}

.verify-button.reject {
    background: transparent;
    border: 1px solid #e040fb;
    color: #e040fb;
}

.verify-button.reject:hover {
    background: rgba(224, 64, 251, 0.1);
}

.blocked-view h2 {
    color: #ff5555;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 4, 18, 0.98);
        padding: 1rem;
        display: none;
        border-bottom: 1px solid rgba(224, 64, 251, 0.3);
    }

    .nav-links.open {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
    }

    .nav-links a {
        text-align: center;
        padding: 1rem;
    }

    .intro-area h1 {
        font-size: 2.2rem;
    }

    .game-window iframe {
        height: 380px;
    }

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

    .status-badges {
        flex-direction: column;
        align-items: center;
    }
}
