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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #09201f;
    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: 1;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 32, 31, 0.25);
    z-index: 1;
}

/* ===================== */
/* Entry Modal (promo)   */
/* ===================== */
#Disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
    z-index: 100;
    background: rgba(0, 0, 0, 0.45);
}

.disc-content {
    background: linear-gradient(160deg, #641b42, #0e3331);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    padding: 40px 36px 32px;
    max-width: 540px;
    width: 100%;
    text-align: center;
    color: #fff;
    animation: popIn 0.3s ease-out;
}

.disc-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 18px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    background: #e03e94;
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(224, 62, 148, 0.55);
}

.disc-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.disc-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 20px;
}

.disc-media {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto 24px;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(224, 62, 148, 0.35);
}

.disc-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 24px;
}

.disc-cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #e03e94, #f47ba3);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(224, 62, 148, 0.45);
    transition: transform 0.15s, box-shadow 0.2s;
}

.disc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(224, 62, 148, 0.6);
}

.disc-note {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 16px;
}

/* ===================== */
/* Language switcher     */
/* ===================== */
.nav-langs, .lang-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lang-bar {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 200;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.lang-link {
    color: #fff;
    opacity: 0.75;
    text-decoration: none;
    transition: opacity 0.2s;
}

.lang-link:hover {
    opacity: 1;
}

.lang-current {
    color: #e03e94;
    cursor: default;
}

/* ===================== */
/* Animation             */
/* ===================== */
#Disclaimer.hidden {
    display: none;
}

@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, #e03e94, #f47ba3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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 #e03e94;
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(224, 62, 148, 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) {
    .disc-content {
        padding: 28px 20px 24px;
        margin: 16px;
    }

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

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

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

    .disc-cta {
        font-size: 1rem;
        padding: 14px 18px;
    }
}
