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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #140a1e;
    color: #f0f0f0;
    width: 100%;
    overflow-x: hidden;
}

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

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 35%, rgba(20, 10, 30, 0.35) 0%, rgba(20, 10, 30, 0.75) 100%),
        linear-gradient(180deg, rgba(20, 10, 30, 0.4) 0%, rgba(20, 10, 30, 0.85) 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: 20;
}

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

.nav-crown {
    font-size: 1.3rem;
    margin-right: 5px;
    filter: drop-shadow(0 0 6px rgba(232, 25, 118, 0.5));
}

.nav-mature {
    color: #e81976;
}

.nav-planet {
    color: #fff;
}

.nav-login {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 8px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    transition: all 0.2s;
}

.nav-login:hover {
    color: #fff;
    background: #e81976;
    border-color: #e81976;
    box-shadow: 0 4px 18px rgba(232, 25, 118, 0.45);
}

/* ===================== */
/* Language switcher     */
/* ===================== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    position: relative;
}

.lang-switch summary {
    list-style: none;
    cursor: pointer;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.2s;
}

.lang-switch summary::-webkit-details-marker,
.lang-switch summary::marker {
    display: none;
    content: "";
}

.lang-switch summary:hover {
    background: #e81976;
    border-color: #e81976;
}

.lang-switch .globe {
    font-size: 1rem;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1c0f28;
    border: 1px solid rgba(232, 25, 118, 0.3);
    border-radius: 12px;
    padding: 8px;
    width: 300px;
    max-height: 360px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    z-index: 60;
}

.lang-menu a {
    color: #e6dced;
    text-decoration: none;
    font-size: 0.82rem;
    padding: 8px 10px;
    border-radius: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.15s, color 0.15s;
}

.lang-menu a:hover {
    background: #e81976;
    color: #fff;
}

/* RTL support (Arabic, Hebrew, Persian) */
[dir="rtl"] article {
    text-align: right;
}

[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] article ul,
[dir="rtl"] article ol {
    padding-left: 0;
    padding-right: 24px;
}

[dir="rtl"] article blockquote {
    border-left: none;
    border-right: 3px solid #e81976;
    border-radius: 8px 0 0 8px;
}

/* ===================== */
/* Hero inner headline   */
/* ===================== */
.hero-inner {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ff6fae;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

.hero-title span {
    background: linear-gradient(135deg, #f5a623, #e81976);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    margin-top: 20px;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 34px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===================== */
/* Disclaimer Modal      */
/* ===================== */
#Disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 5, 15, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
}

.disc-content {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
    padding: 40px 40px 30px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

/* Logo wordmark */
.disc-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 26px;
    letter-spacing: -0.5px;
}

.logo-mature {
    color: #c9186b;
}

.logo-planet {
    color: #2a2a38;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    margin-left: 3px;
}

/* Headline */
.disc-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2550;
    line-height: 1.35;
    margin-bottom: 24px;
}

.disc-divider {
    border: none;
    border-top: 1px solid #e6e6ef;
    margin: 0 0 22px;
}

/* Question / verify */
.disc-question {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1f2550;
    margin-bottom: 12px;
}

.disc-verify {
    font-size: 1rem;
    color: #4a4f74;
    line-height: 1.5;
    margin-bottom: 26px;
}

/* Buttons */
.disc-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.disc-btn {
    flex: 1;
    padding: 16px 0;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.disc-btn:hover {
    transform: translateY(-2px);
}

.disc-no {
    background: #ff7ba5;
    color: #fff;
}

.disc-no:hover {
    box-shadow: 0 6px 20px rgba(255, 123, 165, 0.5);
}

.disc-yes {
    background: #16c7dc;
    color: #06333a;
}

.disc-yes:hover {
    box-shadow: 0 6px 20px rgba(22, 199, 220, 0.5);
}

/* Carousel dots */
.disc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.disc-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d3d3de;
}

.disc-dots .dot.active {
    background: #16c7dc;
}

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

/* ===================== */
/* Visible Content       */
/* ===================== */
.content {
    position: relative;
    z-index: 5;
    background: #140a1e;
    padding: 20px 20px 60px;
}

article {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 4px;
    line-height: 1.8;
}

article > h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 24px;
    line-height: 1.25;
    background: linear-gradient(135deg, #e81976, #ff9ec4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

article h2 {
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    margin: 40px 0 16px;
    color: #ff5fa2;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(232, 25, 118, 0.25);
}

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

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

article strong {
    color: #fff;
}

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

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

article blockquote {
    border-left: 3px solid #e81976;
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(232, 25, 118, 0.06);
    border-radius: 0 8px 8px 0;
    color: #e6dced;
}

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

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

article th {
    background: #2a1233;
    color: #fff;
}

article td {
    color: #cfc4d6;
}

/* ===================== */
/* Footer                */
/* ===================== */
.site-footer {
    background: #0d0614;
    text-align: center;
    padding: 26px 20px;
    border-top: 1px solid rgba(232, 25, 118, 0.15);
}

.site-footer p {
    font-size: 0.85rem;
    color: #8a7d94;
}

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

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

    .nav-right {
        gap: 8px;
    }

    .lang-switch summary {
        padding: 7px 10px;
        font-size: 0.75rem;
    }

    .lang-menu {
        width: min(84vw, 300px);
        max-height: 60vh;
    }

    .nav-login {
        padding: 7px 12px;
        font-size: 0.8rem;
    }

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

    .disc-logo {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .disc-headline {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .disc-verify {
        font-size: 0.92rem;
    }

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

    article {
        padding: 24px 2px;
    }
}
