@charset "utf-8";

/* =========================================================
   XVIDEOS.DE 2026
   Premium dark responsive landing page
   ========================================================= */

:root {
    --bg: #07080c;
    --bg-soft: #0d0f15;
    --surface: #11141c;
    --surface-2: #171a23;
    --surface-3: #1c202b;

    --text: #f7f8fb;
    --text-soft: #b9bfcb;
    --text-muted: #7e8593;

    --accent: #ff174f;
    --accent-light: #ff5278;
    --accent-soft: rgba(255, 23, 79, 0.12);
    --accent-border: rgba(255, 23, 79, 0.30);
    --accent-glow: rgba(255, 23, 79, 0.20);

    --border: rgba(255, 255, 255, 0.09);
    --border-light: rgba(255, 255, 255, 0.14);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --container: 1280px;
    --gap: 24px;

    --shadow:
        0 20px 55px rgba(0, 0, 0, 0.35),
        0 5px 18px rgba(0, 0, 0, 0.18);

    --shadow-hover:
        0 30px 75px rgba(0, 0, 0, 0.48),
        0 8px 28px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   RESET
   ========================================================= */

html {
    min-height: 100%;
    background: var(--bg);
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

body {
    min-width: 320px;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(255, 23, 79, 0.13),
            transparent 36%
        ),
        linear-gradient(
            180deg,
            #08090d 0%,
            #06070a 100%
        );
    color: var(--text);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

p {
    color: var(--text-soft);
    line-height: 1.8;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );
    margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border);
    background: rgba(7, 8, 12, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.brand-name {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-subtitle {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 32px;
    padding: 5px 10px;
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 900;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 90px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 23, 79, 0.14),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #0a0b10 0%,
            #08090d 100%
        );
}

.hero::before {
    position: absolute;
    content: "";
    top: -180px;
    left: 50%;
    width: 620px;
    height: 620px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 23, 79, 0.05);
    filter: blur(80px);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 8px 14px;
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 24px;
    color: #fff;
    font-size: clamp(2.4rem, 7vw, 5.4rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero h1 span {
    display: block;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: clamp(1.15rem, 2.5vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.hero-intro {
    max-width: 760px;
    margin: 30px auto 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.85;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 32px;
    padding: 13px 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #ff174f,
            #d90039
        );
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow:
        0 12px 30px var(--accent-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        filter 200ms ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow:
        0 18px 40px var(--accent-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.primary-button:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 4px;
}


/* =========================================================
   CONTENT SECTION
   ========================================================= */

.content-section,
.feature-section,
.seo-section,
.cta-section {
    padding: 90px 0;
}

.content-section {
    background:
        linear-gradient(
            180deg,
            #08090d 0%,
            #0b0d12 100%
        );
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2 {
    margin-top: 18px;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.section-heading p {
    max-width: 700px;
    margin: 18px auto 0;
    font-size: 1rem;
}


/* =========================================================
   CONTENT CARDS
   ========================================================= */

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
}

.content-card {
    position: relative;
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        ),
        var(--surface);
    box-shadow: var(--shadow);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-border);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.02)
        ),
        var(--surface-2);
    box-shadow: var(--shadow-hover);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border: 1px solid var(--accent-border);
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 900;
}

.content-card h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.content-card p + p {
    margin-top: 16px;
}


/* =========================================================
   FEATURE SECTION
   ========================================================= */

.feature-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 23, 79, 0.055),
            transparent 42%
        ),
        #0b0d12;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
}

.feature {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.025);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        background 200ms ease;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
    background: rgba(255, 23, 79, 0.045);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-light);
    font-size: 0.72rem;
    font-weight: 900;
}

.feature h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
}

.feature p {
    font-size: 0.9rem;
    line-height: 1.7;
}


/* =========================================================
   SEO CONTENT
   ========================================================= */

.seo-section {
    background: #08090d;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 45px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        ),
        var(--surface);
    box-shadow: var(--shadow);
}

.seo-content h2 {
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.seo-content p {
    font-size: 1rem;
}

.seo-content p + p {
    margin-top: 20px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding-top: 20px;
    background: #08090d;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 23, 79, 0.16),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        ),
        var(--surface);
    box-shadow:
        var(--shadow),
        0 0 70px rgba(255, 23, 79, 0.05);
    text-align: center;
}

.cta-card h2 {
    margin-top: 20px;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.cta-card p {
    max-width: 680px;
    margin: 18px auto 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 60px 0 45px;
    border-top: 1px solid var(--border);
    background: #050609;
    text-align: center;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.footer-text {
    max-width: 780px;
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.copyright {
    margin-top: 28px;
    color: #555c68;
    font-size: 0.75rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        padding: 85px 0 75px;
    }

    .content-section,
    .feature-section,
    .seo-section,
    .cta-section {
        padding: 70px 0;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    body {
        font-size: 16px;
    }

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .site-header .container {
        min-height: 64px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }

    .hero {
        padding: 70px 0 65px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 13vw, 3.5rem);
    }

    .hero h1 span {
        margin-top: 14px;
        font-size: 1rem;
    }

    .hero-intro {
        margin-top: 24px;
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .primary-button {
        width: 100%;
        max-width: 340px;
        margin-top: 26px;
    }

    .content-section,
    .feature-section,
    .seo-section,
    .cta-section {
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
        font-size: 0.92rem;
    }

    .content-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .content-card,
    .feature {
        padding: 24px;
    }

    .seo-content {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .seo-content h2 {
        font-size: 1.65rem;
    }

    .seo-content p {
        font-size: 0.92rem;
    }

    .cta-card {
        padding: 45px 22px;
        border-radius: 20px;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .footer-text {
        font-size: 0.78rem;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .container {
        width: min(
            calc(100% - 20px),
            var(--container)
        );
    }

    .eyebrow,
    .section-label {
        font-size: 0.63rem;
        letter-spacing: 0.08em;
    }

    .hero {
        padding: 58px 0;
    }

    .content-card,
    .feature {
        padding: 21px;
    }

    .seo-content {
        padding: 24px 18px;
    }

    .cta-card {
        padding: 38px 18px;
    }
}


/* =========================================================
   ACCESSIBILITY / MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}