@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
}

.top-bar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f093fb, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    box-shadow: 0 5px 20px rgba(240, 147, 251, 0.5);
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.main-nav a {
    display: block;
    padding: 0.8rem 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-nav a:hover, .main-nav a.active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-area {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.warning-section {
    background: rgba(255, 71, 87, 0.2);
    border: 3px solid #ff4757;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    backdrop-filter: blur(10px);
}

.warning-section h3 {
    color: #fffa65;
}

.warning-section ul {
    list-style: none;
    margin-top: 1.5rem;
}

.warning-section li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.05rem;
}

.warning-section li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
}

.feature-box h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.feature-box p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.text-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.text-section p {
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.text-section ul, .text-section ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-section li {
    margin-bottom: 0.8rem;
    line-height: 1.9;
}

.game-area {
    text-align: center;
    margin: 4rem 0;
}

.game-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.site-footer {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrapper h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.resource-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.resource-links a {
    color: #f093fb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.resource-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.8);
}

.verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.verification-overlay.show {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3.5rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.verification-box h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.verification-box p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.verification-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.verification-actions button {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #f093fb, #fff);
    color: #667eea;
}

.btn-accept:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.6);
}

.btn-reject {
    background: #ff4757;
    color: white;
}

.btn-reject:hover {
    background: #ff3838;
    transform: scale(1.08);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 95px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        padding: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.open {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-nav a {
        display: block;
        padding: 1.2rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-area {
        padding: 2.5rem 1.5rem;
    }
    
    .content-wrapper {
        padding: 2rem 1rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .resource-links {
        flex-direction: column;
        gap: 1rem;
    }
}