/* ===================== */
/* 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: #0a0a14;
    color: #f0f0f0;
    width: 100%;
    overflow-x: hidden;
}

/* Locks scrolling while the age gate is open */
body.locked {
    overflow: hidden;
    height: 100vh;
}

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

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.35) 0%, rgba(10, 10, 20, 0.65) 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: 2px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: none;
}

.nav-heart {
    color: #ff2d78;
    font-size: 1.3rem;
    margin-right: 6px;
}

.nav-aufregende {
    color: #fff;
}

.nav-flirts {
    color: #ff2d78;
    font-style: italic;
}

.nav-login {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 18px;
    border: 1.5px solid #ff2d78;
    border-radius: 30px;
    transition: all 0.2s;
}

.nav-login:hover {
    background: #ff2d78;
    color: #fff;
}

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

#Disclaimer.hidden {
    display: none;
}

.disc-content {
    background: linear-gradient(165deg, #16121f 0%, #1d1526 55%, #251029 100%);
    border: 1.5px solid rgba(255, 45, 120, 0.5);
    border-radius: 18px;
    box-shadow:
        0 8px 50px rgba(0, 0, 0, 0.7),
        0 0 70px rgba(255, 45, 120, 0.25);
    padding: 44px 40px 34px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

.disc-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ff2d78;
    border: 1.5px solid #ff2d78;
    border-radius: 30px;
    padding: 5px 16px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

/* Only <p> tags — no headings inside the modal */
.disc-lead {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 14px;
}

.disc-lead .hot {
    color: #ff2d78;
}

.disc-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 26px;
    line-height: 1.6;
}

.disc-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.disc-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 17px 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff2d78, #ff5c9d);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 24px rgba(255, 45, 120, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.disc-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 45, 120, 0.55);
}

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

.disc-leave {
    margin-top: 18px;
}

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

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

/* ===================== */
/* Hero CTA content       */
/* ===================== */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    max-width: 640px;
    text-align: center;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
}

.hero-title .hot {
    color: #ff2d78;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ff2d78, #ff5c9d);
    border-radius: 40px;
    box-shadow: 0 6px 24px rgba(255, 45, 120, 0.45);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(255, 45, 120, 0.65);
}

.hero-cta .arrow {
    font-size: 1.25rem;
}

/* Scroll hint at bottom of hero */
.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center;
    animation: bounce 1.8s infinite;
}

.scroll-hint .chev {
    display: block;
    font-size: 1.4rem;
    margin-top: 2px;
    color: #ff2d78;
}

/* ===================== */
/* Content (below 100vh) */
/* ===================== */
.content {
    position: relative;
    z-index: 5;
    background: #0a0a14;
    padding: 60px 20px 80px;
}

article {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
    color: #d8d8de;
}

article h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #fff;
}

article h2 {
    font-size: 1.55rem;
    margin: 40px 0 18px;
    color: #ff2d78;
}

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

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

article strong {
    color: #fff;
}

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

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

article a {
    color: #ff5c9d;
}

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

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

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

article td {
    color: #c8c8d0;
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media screen and (max-width: 600px) {
    .navbar { padding: 12px 16px; }
    .nav-logo { font-size: 1.15rem; }
    .nav-login { padding: 6px 14px; font-size: 0.8rem; }

    .hero-title { font-size: 1.9rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-cta { padding: 14px 30px; font-size: 1rem; }

    .disc-content { padding: 34px 22px 28px; }
    .disc-lead { font-size: 1.15rem; }
    .disc-text { font-size: 0.85rem; }
    .disc-confirm { font-size: 1rem; padding: 15px 0; }

    article h1 { font-size: 1.6rem; }
    article h2 { font-size: 1.3rem; }
    .content { padding: 44px 16px 60px; }
}
