/* ===================== */
/* 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;
}

.disc-content {
    background: linear-gradient(160deg, #e8194c 0%, #b8163e 30%, #6b1a8a 60%, #3a1db8 100%);
    border-radius: 16px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(232, 25, 76, 0.15);
    padding: 44px 40px 36px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

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

/* Description */
.disc-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Question */
.disc-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

/* Leave link */
.disc-leave {
    margin-top: 16px;
}

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

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

/* Confirm Button */
.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, #f5a623, #e8194c);
    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(245, 166, 35, 0.4);
}

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

/* ===================== */
/* 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: 32px 22px 28px;
        margin: 16px;
    }

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

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

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