/* ===================== */
/* 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;
    background: #2b2b2b;
    z-index: 50;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
}

.nav-icon {
    font-size: 1.3rem;
    margin-right: 4px;
}

.nav-cheeky {
    color: #fff;
}

.nav-crush {
    color: #f44e7b;
}

.nav-login {
    color: #f44e7b;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

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

/* ===================== */
/* Age Confirmation Modal */
/* ===================== */
#Disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
}

.disc-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    padding: 40px 36px 32px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    animation: popIn 0.3s ease-out;
}

/* Title */
.disc-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

/* Description */
.disc-text {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.7;
}

.disc-privacy {
    color: #f44e7b;
    text-decoration: none;
    font-weight: 500;
}

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

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

/* Exit Button */
.disc-exit {
    flex: 1;
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    background: #e8e8e8;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.disc-exit:hover {
    background: #d4d4d4;
}

/* Confirm Button */
.disc-confirm {
    flex: 1;
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #f44e7b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.disc-confirm:hover {
    background: #e03a67;
    transform: translateY(-1px);
}

/* ===================== */
/* Animation             */
/* ===================== */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    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, #f44e7b, #ff8fa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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 #f44e7b;
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(244, 78, 123, 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.2rem;
    }

    .disc-content {
        padding: 28px 20px 24px;
        margin: 16px;
    }

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

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

    .disc-buttons {
        flex-direction: column;
    }

    .disc-exit,
    .disc-confirm {
        padding: 13px 0;
        font-size: 0.9rem;
    }
}
