@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6c2bd9;
    --secondary-color: #00d4ff;
    --dark-bg: #0a0015;
    --card-bg: #1a0033;
    --text-light: #f0f0f0;
    --accent: #ff6ec7;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    background-image: radial-gradient(circle at 20% 50%, rgba(108, 43, 217, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

header {
    background: rgba(26, 0, 51, 0.9);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.3);
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-svg {
    width: 45px;
    height: 45px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.banner-section {
    max-width: 1600px;
    margin: 4rem auto;
    padding: 0 2.5rem;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.4rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.main-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
}

.game-embed {
    background: linear-gradient(145deg, rgba(108, 43, 217, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 1400px;
    box-shadow: 0 10px 50px rgba(108, 43, 217, 0.4);
}

.game-embed iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-box {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(108, 43, 217, 0.2) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.alert-box {
    background: linear-gradient(135deg, rgba(255, 110, 199, 0.2) 0%, rgba(108, 43, 217, 0.2) 100%);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.alert-box ul {
    list-style: none;
    padding: 0;
}

.alert-box li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.alert-box li::before {
    content: '🔔';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.page-footer {
    background: rgba(26, 0, 51, 0.95);
    padding: 4rem 2.5rem;
    margin-top: 5rem;
    border-top: 3px solid var(--primary-color);
}

.footer-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.resource-links a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.resource-links a:hover {
    color: var(--secondary-color);
    background: rgba(0, 212, 255, 0.1);
}

.verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 21, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verify-overlay.show {
    display: flex;
}

.verify-box {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(108, 43, 217, 0.3) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.4);
}

.verify-box h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.verify-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.action-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn.confirm {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.action-btn.confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.action-btn.decline {
    background: #444;
    color: white;
}

.action-btn.decline:hover {
    background: #555;
}

.content-block {
    background: rgba(26, 0, 51, 0.4);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border-left: 5px solid var(--primary-color);
}

.content-block p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.content-block ul, .content-block ol {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.content-block li {
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav ul {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(26, 0, 51, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.4s ease;
        padding: 3rem 0;
        gap: 0;
        border-top: 2px solid var(--secondary-color);
    }
    
    .main-nav ul.show {
        left: 0;
    }
    
    .main-nav li {
        margin: 1.5rem 0;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .game-embed iframe {
        height: 550px;
    }
    
    .header-wrapper {
        padding: 0 1.5rem;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .verify-box {
        margin: 1.5rem;
        padding: 2.5rem;
    }
    
    .verify-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .resource-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}
