@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #06b6d4;
    --teal: #0891b2;
    --pink: #ec4899;
    --purple: #a855f7;
    --slate: #1e293b;
    --dark-slate: #0f172a;
    --white: #ffffff;
    --light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-slate);
    color: var(--white);
    line-height: 1.6;
}

.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9000;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.5);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 26px;
    height: 2px;
    background: var(--cyan);
    transition: 0.3s;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
}

.navigation a {
    color: var(--white);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.navigation a:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(236, 72, 153, 0.2));
    color: var(--cyan);
}

.page-content {
    padding-top: 80px;
}

.hero-banner {
    background: linear-gradient(135deg, var(--slate), var(--dark-slate));
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-banner p {
    font-size: 1.25rem;
    color: var(--light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--cyan);
    font-weight: 700;
}

.feature-item p {
    color: var(--light);
    line-height: 1.7;
}

.gameplay-section {
    margin: 5rem 0;
    padding: 4rem 2rem;
    background: var(--slate);
    border-radius: 20px;
}

.gameplay-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.content-block {
    padding: 4rem 0;
}

.content-block h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: var(--cyan);
    font-weight: 800;
}

.content-block h3 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--pink);
    font-weight: 700;
}

.content-block p {
    color: var(--light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-block ul {
    margin: 1.5rem 0 1.5rem 2.5rem;
    color: var(--light);
}

.content-block li {
    margin-bottom: 0.8rem;
}

.page-footer {
    background: var(--dark-slate);
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.footer-links a:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(236, 72, 153, 0.2));
    color: var(--cyan);
}

.footer-text {
    color: var(--light);
    opacity: 0.8;
}

.verification-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.verification-panel {
    background: linear-gradient(135deg, var(--slate), var(--dark-slate));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--cyan);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.verification-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.verification-panel p {
    color: var(--light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.verification-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.verify-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.verify-btn.yes {
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    color: white;
}

.verify-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.verify-btn.no {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.verify-btn.no:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-slate);
        transition: right 0.3s;
        padding-top: 5rem;
        border-left: 2px solid var(--cyan);
    }
    
    .navigation.open {
        right: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .navigation a {
        display: block;
        padding: 1.2rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .game-iframe {
        height: 500px;
    }
}
