@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ether-deep: #0d1b2a;
    --ether-mid: #1b263b;
    --ether-light: #415a77;
    --ether-cyan: #00d4ff;
    --ether-teal: #2dd4bf;
    --ether-mist: #e0e7ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--ether-deep);
    color: var(--ether-mist);
    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(ellipse at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(45, 212, 191, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(15px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--ether-cyan);
    text-decoration: none;
    letter-spacing: 4px;
}

.brand span {
    color: var(--ether-teal);
}

.navigation {
    display: flex;
    gap: 2.5rem;
}

.navigation a {
    color: var(--ether-mist);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.navigation a:hover {
    color: var(--ether-cyan);
    border-bottom-color: var(--ether-cyan);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--ether-cyan);
    transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.ethereal-hero {
    min-height: 92vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(180deg, var(--ether-deep) 0%, var(--ether-mid) 100%);
    position: relative;
}

.ethereal-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ether-cyan) 0%, var(--ether-teal) 50%, var(--ether-mist) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: rgba(224, 231, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--ether-cyan) 0%, var(--ether-teal) 100%);
    color: var(--ether-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.alerts-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.alert-tag {
    background: rgba(65, 90, 119, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.alert-tag .icon {
    color: var(--ether-cyan);
}

.gaming-area {
    padding: 5rem 3rem;
    background: var(--ether-mid);
}

.area-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--ether-teal);
}

.game-frame {
    max-width: 900px;
    margin: 0 auto;
    background: var(--ether-deep);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.game-frame iframe {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 8px;
}

.benefits-area {
    padding: 6rem 3rem;
    background: var(--ether-deep);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.8) 0%, rgba(65, 90, 119, 0.4) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.benefit-card .symbol {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--ether-cyan);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(224, 231, 255, 0.75);
    font-size: 0.95rem;
}

.story-section {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, var(--ether-mid) 0%, var(--ether-deep) 100%);
}

.story-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--ether-teal);
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: rgba(224, 231, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.footer {
    background: var(--ether-deep);
    padding: 4rem 3rem;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--ether-cyan);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.gaming-help h4 {
    font-size: 0.95rem;
    color: var(--ether-teal);
    margin-bottom: 1rem;
    font-weight: 500;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.help-links a {
    color: rgba(224, 231, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.help-links a:hover {
    color: var(--ether-cyan);
}

.footer-note {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(224, 231, 255, 0.5);
}

.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.98);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.verification-overlay.hidden {
    display: none;
}

.verification-box {
    background: linear-gradient(145deg, var(--ether-mid), var(--ether-deep));
    padding: 3.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 480px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.verification-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--ether-cyan);
    margin-bottom: 1.5rem;
}

.verification-box p {
    color: rgba(224, 231, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verify-btn {
    padding: 1rem 2.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    border-radius: 6px;
    letter-spacing: 1px;
}

.verify-btn.accept {
    background: linear-gradient(135deg, var(--ether-cyan), var(--ether-teal));
    color: var(--ether-deep);
}

.verify-btn.decline {
    background: transparent;
    border: 1px solid var(--ether-light);
    color: var(--ether-mist);
}

.verify-btn:hover {
    transform: scale(1.05);
}

.inner-page {
    padding: 6rem 3rem 4rem;
    min-height: calc(100vh - 200px);
}

.page-container {
    max-width: 880px;
    margin: 0 auto;
    background: rgba(27, 38, 59, 0.6);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.page-container h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--ether-cyan);
    margin-bottom: 2rem;
}

.page-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--ether-teal);
    margin: 2.5rem 0 1rem;
}

.page-container p {
    color: rgba(224, 231, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: rgba(224, 231, 255, 0.85);
}

.page-container li {
    margin-bottom: 0.6rem;
}

.instruction-box {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--ether-teal);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(13, 27, 42, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navigation.active {
        transform: translateX(0);
    }

    .header-content {
        padding: 1rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .alerts-row {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .gaming-area,
    .benefits-area,
    .story-section,
    .footer,
    .inner-page {
        padding: 3rem 1.5rem;
    }

    .page-container {
        padding: 2rem 1.5rem;
    }

    .game-frame iframe {
        height: 420px;
    }
}
