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

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

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

/* ===================== */
/* Hero (first 100vh)    */
/* ===================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#HeroBack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.35) 0%, rgba(10, 14, 23, 0.75) 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 30px;
    z-index: 50;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-flame {
    font-size: 1.25rem;
    margin-right: 4px;
}

.nav-ozzy { color: #ffffff; }
.nav-match { color: #ff7a18; }

.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff7a18, #ff3d3d);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 61, 61, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(255, 122, 24, 0.4);
}

/* Hero CTA (visible after modal closes) */
.hero-cta {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    z-index: 5;
    width: 90%;
    max-width: 560px;
    text-align: center;
}

.hero-tagline {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff7a18, #ff3d3d);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(255, 61, 61, 0.35);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 122, 24, 0.5);
}

.hero-btn .arrow { font-size: 1.25rem; }

/* Hero scroll hint */
.scroll-hint {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 1.8s infinite;
}

@keyframes bounce {
    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(6, 9, 15, 0.75);
    backdrop-filter: blur(6px);
    z-index: 100;
}

.disc-content {
    background: linear-gradient(160deg, #141b2b 0%, #0d1220 100%);
    border: 1px solid rgba(255, 122, 24, 0.28);
    border-radius: 16px;
    box-shadow:
        0 8px 44px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 122, 24, 0.08);
    padding: 44px 40px 36px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

.disc-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.disc-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disc-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 26px;
    line-height: 1.6;
}

.disc-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.disc-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff7a18, #ff3d3d);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.disc-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 122, 24, 0.45);
}

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

.disc-leave {
    margin-top: 16px;
}

.disc-leave span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.disc-leave span:hover {
    color: #fff;
}

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

/* ===================== */
/* Content (below 100vh) */
/* ===================== */
.content {
    position: relative;
    z-index: 2;
    background: #0a0e17;
}

article {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    color: #d7dbe4;
    line-height: 1.8;
}

article h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

article h1 strong,
article h2 { color: #ff7a18; }

article h2 {
    font-size: 1.5rem;
    margin: 34px 0 16px;
}

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

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

article strong { color: #eef1f6; }

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

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

article a { color: #ff7a18; }

article blockquote {
    border-left: 3px solid #ff7a18;
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(255, 122, 24, 0.06);
    border-radius: 0 8px 8px 0;
    color: #d7dbe4;
}

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

article th, article td {
    padding: 12px;
    border: 1px solid #232b3d;
    text-align: left;
}

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

article td { color: #c3c9d4; }

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

    .disc-content {
        padding: 32px 22px 28px;
        margin: 16px;
    }
    .disc-title { font-size: 1.4rem; }
    .disc-text { font-size: 0.82rem; margin-bottom: 20px; }
    .disc-confirm { padding: 14px 0; font-size: 1rem; }

    article { padding: 40px 18px 60px; }
    article h1 { font-size: 1.6rem; }
    article h2 { font-size: 1.3rem; }

    .hero-tagline { font-size: 1.1rem; }
    .hero-btn { padding: 14px 24px; font-size: 1rem; }
}
