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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a1e;
    color: #f0f0f0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

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

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.55);
    z-index: 1;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-icon {
    font-size: 1.2rem;
    margin-right: 6px;
}

.nav-naked {
    color: #e8194c;
}

.nav-news {
    color: #fff;
}

.nav-login {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-login:hover {
    color: #ff4d6f;
}

/* ===================== */
/* Disclaimer Modal      */
/* ===================== */
#Disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 16px;
}

.disc-content {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
    padding: 32px 36px 28px;
    max-width: 720px;
    width: 100%;
    text-align: left;
    animation: popIn 0.3s ease-out;
    color: #222;
}

/* Title */
.disc-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 0;
}

/* Scrollable disclaimer text box */
.disc-box {
    background: #f3f3f3;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 16px 18px;
    max-height: 180px;
    overflow-y: auto;
    margin-bottom: 18px;
}

.disc-box p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Legal line under the box */
.disc-legal {
    font-size: 0.9rem;
    color: #2a2a2a;
    line-height: 1.5;
    margin-bottom: 22px;
}

.disc-terms {
    color: #e8194c;
    text-decoration: none;
}

.disc-terms:hover {
    text-decoration: underline;
}

/* Action buttons row */
.disc-actions {
    display: flex;
    gap: 14px;
}

.disc-confirm,
.disc-leave {
    flex: 1;
    padding: 18px 12px;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: filter 0.15s, transform 0.15s;
    font-family: inherit;
}

.disc-confirm {
    color: #fff;
    background: #e8194c;
}

.disc-confirm:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.disc-leave {
    color: #fff;
    background: #9e9e9e;
}

.disc-leave:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

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

/* ===================== */
/* SEO Content (details) */
/* ===================== */
details {
    position: absolute;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

details summary {
    display: none;
}

article {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #ddd;
    line-height: 1.8;
}

article h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e8194c, #ff8fa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

article h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: #e8194c;
}

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

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

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

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

article blockquote {
    border-left: 3px solid #e8194c;
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(232, 25, 76, 0.05);
    border-radius: 0 8px 8px 0;
}

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

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

article th {
    background: #1a1040;
    color: #fff;
}

article td {
    color: #ccc;
}

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

    .nav-logo {
        font-size: 1.1rem;
    }

    .disc-content {
        padding: 24px 20px 22px;
    }

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

    .disc-box {
        max-height: 200px;
    }

    .disc-box p {
        font-size: 0.78rem;
    }

    .disc-legal {
        font-size: 0.82rem;
    }

    .disc-actions {
        flex-direction: column;
        gap: 10px;
    }

    .disc-confirm,
    .disc-leave {
        padding: 14px;
        font-size: 0.95rem;
    }
}
