/* ===================== */
/* Reset & Body          */
/* ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #070b14;
    color: #e8ecf4;
    width: 100%;
    min-height: 100vh;
}

/* Scroll locked while the age gate is open */
body.locked {
    overflow: hidden;
    height: 100vh;
}

/* ===================== */
/* Background & Overlay  */
/* ===================== */
#HeroBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.9;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.35) 0%, rgba(7, 11, 20, 0.65) 100%);
    z-index: 1;
}

/* ===================== */
/* Navbar                */
/* ===================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    z-index: 50;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #fff;
}

.nav-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 60%, #3b82f6 100%);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
    font-size: 1rem;
}

.nav-brand-1 { color: #fff; }
.nav-brand-2 { color: #c4b5fd; }

.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.5);
}

/* ===================== */
/* Hero (first 100vh)    */
/* ===================== */
.hero {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 48px;
    text-align: center;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bob 1.8s ease-in-out infinite;
}

.scroll-hint .chevron {
    font-size: 1.6rem;
    line-height: 1;
    color: #8b5cf6;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===================== */
/* Disclaimer Modal      */
/* ===================== */
#Disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 16, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100;
    padding: 16px;
}

#Disclaimer.hidden {
    display: none;
}

.disc-content {
    position: relative;
    background: #0b0f1a;
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 18px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(37, 99, 235, 0.12);
    padding: 40px 40px 32px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

/* Modal texts — only <p>, no headings */
.disc-eyebrow {
    font-size: 0.95rem;
    color: #9aa4bd;
    margin-bottom: 10px;
}

.disc-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.disc-text {
    font-size: 0.98rem;
    color: #9aa4bd;
    margin-bottom: 26px;
    line-height: 1.6;
}

/* Confirm / Register Button */
.disc-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.disc-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(37, 99, 235, 0.55);
}

.disc-confirm .arrow {
    font-size: 1.1rem;
}

.disc-or {
    font-size: 0.85rem;
    color: #6b7488;
    margin: 16px 0 8px;
}

.disc-login span {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    cursor: pointer;
    transition: color 0.2s;
}

.disc-login span:hover {
    color: #60a5fa;
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1); }
}

/* ===================== */
/* Content (below fold)  */
/* ===================== */
.content {
    position: relative;
    z-index: 2;
    background: #070b14;
    border-top: 1px solid rgba(139, 92, 246, 0.25);
}

article {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 22px 80px;
    line-height: 1.8;
}

article h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

article h2 {
    font-size: 1.55rem;
    margin: 40px 0 16px;
    color: #60a5fa;
}

article h3 {
    font-size: 1.2rem;
    margin: 28px 0 12px;
    color: #a78bfa;
}

article p {
    margin-bottom: 16px;
    color: #c3cbdd;
}

article strong {
    color: #eef1f8;
}

article a {
    color: #60a5fa;
}

article ul, article ol {
    margin: 16px 0;
    padding-left: 24px;
}

article li {
    margin-bottom: 8px;
    color: #c3cbdd;
}

article blockquote {
    border-left: 3px solid #7c3aed;
    padding: 14px 22px;
    margin: 22px 0;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 0 10px 10px 0;
    color: #d7dcea;
}

article table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
}

article th, article td {
    padding: 12px 14px;
    border: 1px solid #24304d;
    text-align: left;
}

article th {
    background: #141d33;
    color: #fff;
}

article td {
    color: #c3cbdd;
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media screen and (max-width: 600px) {
    .navbar { padding: 12px 16px; }
    .nav-logo { font-size: 1.1rem; }
    .nav-bubble { width: 30px; height: 30px; }
    .nav-login { padding: 8px 14px; font-size: 0.8rem; }

    .disc-content { padding: 34px 22px 28px; }
    .disc-title { font-size: 1.35rem; }
    .disc-text { font-size: 0.85rem; }

    article { padding: 48px 18px 64px; }
    article h1 { font-size: 1.7rem; }
    article h2 { font-size: 1.35rem; }
}
