@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e7ff;
    min-height: 100vh;
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(88, 28, 135, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 64, 175, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

header {
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 3px solid #8b5cf6;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(139, 92, 246, 0.3);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e0e7ff;
    gap: 15px;
}

.brand-symbol {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    border: 2px solid #a78bfa;
}

.brand-name {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a78bfa;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #a78bfa;
    font-size: 32px;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    color: #c7d2fe;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #8b5cf6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    width: 100%;
}

main {
    padding: 70px 40px;
    position: relative;
    z-index: 1;
}

.intro-area {
    text-align: center;
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-area h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.intro-area p {
    font-size: 24px;
    margin-bottom: 50px;
    color: #c7d2fe;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 80px auto;
    max-width: 1400px;
}

.info-box {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid #4c1d95;
    padding: 45px;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.info-box:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    background: rgba(30, 41, 59, 0.8);
}

.info-box .symbol {
    font-size: 56px;
    margin-bottom: 25px;
    display: block;
}

.info-box h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #a78bfa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box p {
    font-size: 18px;
    color: #c7d2fe;
    line-height: 1.8;
}

.game-zone {
    background: rgba(15, 23, 42, 0.8);
    border: 3px solid #6366f1;
    padding: 50px;
    border-radius: 20px;
    margin: 80px auto;
    max-width: 1400px;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.3);
}

.game-zone h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
    background: #000000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.text-area {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid #4c1d95;
    padding: 60px;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1400px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.text-area h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #a78bfa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-area h3 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #a78bfa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-area p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #c7d2fe;
    line-height: 1.9;
}

.text-area ul {
    margin: 25px 0;
    padding-left: 35px;
}

.text-area li {
    font-size: 19px;
    margin-bottom: 15px;
    color: #c7d2fe;
    line-height: 1.8;
}

footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 3px solid #8b5cf6;
    padding: 60px 40px;
    margin-top: 100px;
    box-shadow: 0 -5px 30px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 1;
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrap h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #a78bfa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #c7d2fe;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    border: 2px solid transparent;
}

.footer-nav a:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: #8b5cf6;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-wrap p {
    margin-top: 30px;
    color: #94a3b8;
    font-size: 17px;
}

.verify-popup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verify-popup.hidden {
    display: none;
}

.verify-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 3px solid #8b5cf6;
    padding: 70px 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.6);
}

.verify-box h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.verify-box p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #c7d2fe;
    line-height: 1.7;
}

.verify-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.verify-btn {
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verify-btn.accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.verify-btn.accept:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

.verify-btn.decline {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
}

.verify-btn.decline:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.6);
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 105px;
        left: -100%;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        transition: left 0.3s ease;
        padding: 40px;
        border-bottom: 3px solid #8b5cf6;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 18px 25px;
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    }

    nav a::after {
        display: none;
    }

    .intro-area h1 {
        font-size: 42px;
    }

    .intro-area p {
        font-size: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 550px;
    }

    .text-area {
        padding: 35px 25px;
    }

    .verify-box {
        margin: 20px;
        padding: 50px 35px;
    }

    .verify-actions {
        flex-direction: column;
    }

    .verify-btn {
        width: 100%;
    }
}
