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

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

/* Lock scroll while the modal is up */
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(7, 31, 56, 0.35) 0%, rgba(7, 31, 56, 0.55) 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 28px;
    z-index: 50;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-desperate {
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.nav-bbws {
    color: #5bc5f0;
    font-size: 1.7rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav-login {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 9px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0503c, #d5341f);
    box-shadow: 0 4px 14px rgba(213, 52, 31, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 52, 31, 0.5);
}

/* ===================== */
/* Hero CTA              */
/* ===================== */
.hero-cta-wrap {
    position: absolute;
    left: 0;
    bottom: 7%;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 40;
    padding: 0 16px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #f0503c, #d5341f);
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(213, 52, 31, 0.45);
    cursor: pointer;
    animation: ctaPulse 2s ease-in-out infinite;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240, 80, 60, 0.6);
}

.hero-cta .arrow {
    font-size: 1.3rem;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

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

.disc-content {
    background: linear-gradient(160deg, #0d3b66 0%, #1663a0 45%, #1899b0 100%);
    border: 1px solid rgba(91, 197, 240, 0.35);
    border-radius: 18px;
    box-shadow:
        0 10px 44px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(24, 153, 176, 0.2);
    padding: 42px 38px 34px;
    max-width: 470px;
    width: 100%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

.disc-badge {
    font-size: 0.95rem;
    font-weight: 900;
    color: #5bc5f0;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

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

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

.disc-question {
    font-size: 1.12rem;
    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, #f0503c, #d5341f);
    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(240, 80, 60, 0.45);
}

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

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

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

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

/* ===================== */
/* Animation             */
/* ===================== */
@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: linear-gradient(180deg, #071f38 0%, #0a2c4f 100%);
}

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

article h1 {
    font-size: 2.1rem;
    margin-bottom: 22px;
    color: #5bc5f0;
    line-height: 1.25;
}

article h2 {
    font-size: 1.55rem;
    margin: 40px 0 16px;
    color: #ffffff;
    border-left: 4px solid #f0503c;
    padding-left: 14px;
}

article h3 {
    font-size: 1.22rem;
    margin: 28px 0 12px;
    color: #7fd3f5;
}

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

article strong {
    color: #ffffff;
}

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

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

article a {
    color: #5bc5f0;
}

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

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

article th {
    background: #0d3b66;
    color: #fff;
}

article td {
    color: #cfe0ef;
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media screen and (max-width: 600px) {
    .navbar {
        padding: 12px 16px;
    }

    .nav-bbws {
        font-size: 1.4rem;
    }

    .disc-content {
        padding: 32px 22px 28px;
    }

    .disc-title {
        font-size: 1.25rem;
    }

    .disc-text {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .disc-confirm {
        padding: 14px 0;
        font-size: 1rem;
    }

    article h1 {
        font-size: 1.65rem;
    }

    article h2 {
        font-size: 1.3rem;
    }

    .hero-cta {
        padding: 14px 26px;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .hero-cta-wrap {
        bottom: 5%;
    }
}
