@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean: #0ea5e9;
    --deep: #082f49;
    --abyss: #0c1829;
    --foam: #f0f9ff;
    --coral: #f97316;
    --slate: #1e3a5f;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--abyss);
    color: var(--foam);
    line-height: 1.8;
}

.top-nav {
    background: linear-gradient(180deg, var(--deep) 0%, rgba(8, 47, 73, 0.9) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.site-brand svg {
    width: 45px;
    height: 45px;
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ocean);
}

.nav-btn {
    display: none;
    background: none;
    border: 2px solid var(--ocean);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
}

.nav-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--ocean);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.4rem;
}

.nav-list a {
    color: var(--foam);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 20px;
    transition: 0.25s;
}

.nav-list a:hover {
    background: var(--ocean);
    color: var(--deep);
}

.main-body {
    padding-top: 82px;
}

.splash-zone {
    background: linear-gradient(135deg, var(--slate) 0%, var(--abyss) 100%);
    padding: 4.5rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--ocean);
}

.splash-zone h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--ocean);
}

.splash-zone .intro-text {
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 780px;
    margin: 0 auto 2.25rem;
}

.status-row {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.status-badge {
    background: rgba(14, 165, 233, 0.15);
    border: 2px solid var(--ocean);
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.wheel-section {
    padding: 3.5rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.wheel-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 1.75rem;
}

.wheel-frame {
    background: var(--slate);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
}

.wheel-embed {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.wheel-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.benefit-item {
    background: linear-gradient(180deg, var(--slate) 0%, var(--deep) 100%);
    padding: 1.75rem;
    border-radius: 16px;
    border-top: 4px solid var(--ocean);
}

.benefit-item h3 {
    color: var(--ocean);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-item p {
    font-weight: 400;
}

.text-area {
    background: var(--slate);
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 1050px;
}

.text-area h2 {
    color: var(--coral);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.text-area p {
    margin-bottom: 1rem;
    font-weight: 400;
}

.text-area ul {
    margin: 1.25rem 0 1.25rem 1.75rem;
}

.text-area li {
    margin-bottom: 0.6rem;
}

.inner-header {
    background: linear-gradient(135deg, var(--deep) 0%, var(--slate) 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    border-bottom: 4px solid var(--ocean);
}

.inner-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ocean);
}

.footer-area {
    background: var(--deep);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: var(--ocean);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    opacity: 0.5;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.support-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-row a {
    color: var(--foam);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.4;
}

.support-row a:hover {
    opacity: 1;
}

.verify-layer {
    position: fixed;
    inset: 0;
    background: rgba(12, 24, 41, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verify-layer.done {
    display: none;
}

.verify-box {
    background: var(--slate);
    border: 3px solid var(--ocean);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 460px;
    text-align: center;
    margin: 1rem;
}

.verify-box h2 {
    color: var(--ocean);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.verify-box p {
    margin-bottom: 1.75rem;
}

.verify-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.v-btn {
    padding: 0.85rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.25s;
}

.v-yes {
    background: var(--ocean);
    color: var(--deep);
}

.v-yes:hover {
    background: var(--coral);
}

.v-no {
    background: transparent;
    border: 2px solid var(--ocean);
    color: var(--ocean);
}

.v-no:hover {
    background: var(--ocean);
    color: var(--deep);
}

@media (max-width: 768px) {
    .nav-btn {
        display: block;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep);
        flex-direction: column;
        padding: 1rem;
        display: none;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list a {
        text-align: center;
        padding: 0.85rem;
        border-radius: 10px;
    }
    
    .splash-zone {
        padding: 3rem 1rem;
    }
    
    .status-row {
        flex-direction: column;
        align-items: center;
    }
    
    .text-area {
        margin: 2rem 1rem;
        padding: 1.75rem;
    }
    
    .verify-box {
        padding: 2rem;
    }
    
    .verify-btns {
        flex-direction: column;
    }
}
