/*
 * DRK Seasonal Splash — Styles
 * version: 0.1.1 | date: 2026-08-10 MESZ
 * changelog: 0.1.0 - Saison 'urlaub' (Vars, Overlay-Verlauf, Note-Zeile, Reduced-Motion)
 *
 * BEM-Prefix: drk-splash__
 * Saison-Variants via [data-season="..."] + CSS Custom Properties
 * z-index: 999999 (ueber Elementor, unter Complianz Cookie-Banner ~max-int)
 */

/* === Lokal-scoped Reset === */
.drk-splash,
.drk-splash * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/* === Body-Scroll-Block waehrend Splash aktiv === */
body.drk-splash-active {
    overflow: hidden;
}

/* === Container === */
.drk-splash {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', system-ui, sans-serif;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 200ms ease-out;
}

.drk-splash.drk-splash--enter {
    opacity: 1;
}

.drk-splash.drk-splash--leave {
    opacity: 0;
    transition: opacity 500ms ease-in;
}

/* === Saison-Variants (Default-Werte als Fallback) === */
.drk-splash {
    --bg: #F07C00;
    --claim: #000;
    --underline: #000;
    --badge-bg: #000;
    --badge-fg: #fff;
}

.drk-splash[data-season="fasching"] {
    --bg: #F07C00;
    --claim: #000;
    --underline: #000;
    --badge-bg: #000;
    --badge-fg: #fff;
}

.drk-splash[data-season="ostern"] {
    --bg: #FFF4C2;
    --claim: #000;
    --underline: #000;
    --badge-bg: #000;
    --badge-fg: #fff;
}

.drk-splash[data-season="sommer"] {
    --bg: #7CB9E8;
    --claim: #FFFFFF;
    --underline: #FFD700;
    --badge-bg: #FF6B35;
    --badge-fg: #FFFFFF;
}

.drk-splash[data-season="urlaub"] {
    --bg: #40BFB4;
    --claim: #FFFFFF;
    --underline: #FFD700;
    --badge-bg: #0B5563;
    --badge-fg: #FFFFFF;
}

.drk-splash[data-season="herbst"] {
    --bg: #A0522D;
    --claim: #FFEBCD;
    --underline: #FFD700;
    --badge-bg: #3E1F0D;
    --badge-fg: #FFEBCD;
}

.drk-splash[data-season="wm"] {
    --bg: #1E5128;
    --claim: #FFFFFF;
    --underline: #FFD700;
    --badge-bg: #000000;
    --badge-fg: #FFD700;
}

/* WM-Stadion-Hintergrund: dunkles Rasen-Gruen + subtile DE-Streifen oben */
.drk-splash[data-season="wm"] .drk-splash__overlay {
    background:
        radial-gradient(ellipse at center 60%, #2A6E38 0%, #1E5128 50%, #133520 100%);
}
.drk-splash[data-season="wm"] .drk-splash__overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 14px;
    background: linear-gradient(to right, #000000 0%, #000000 33%, #C8102E 33%, #C8102E 66%, #FFD700 66%, #FFD700 100%);
    opacity: 0.85;
    z-index: 1;
}
/* Mittelkreis-Hinweis auf dem Rasen (subtil) */
.drk-splash[data-season="wm"] .drk-splash__overlay::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    width: 70vmin;
    height: 70vmin;
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    transform: translateX(-50%);
}

.drk-splash[data-season="halloween"] {
    --bg: #1A1A2E;
    --claim: #F07C00;
    --underline: #F07C00;
    --badge-bg: #F07C00;
    --badge-fg: #000;
}

.drk-splash[data-season="weihnachten"] {
    --bg: #F0F8FF;
    --claim: #1E3A8A;
    --underline: #C8102E;
    --badge-bg: #1E3A8A;
    --badge-fg: #fff;
}

.drk-splash[data-season="silvester"] {
    --bg: #0B0B2F;
    --claim: #FFD700;
    --underline: #FFD700;
    --badge-bg: #FFD700;
    --badge-fg: #0B0B2F;
}

/* === Overlay (Saison-BG) === */
.drk-splash__overlay {
    position: absolute;
    inset: 0;
    background: var(--bg);
    z-index: 1;
    overflow: hidden;
}

/* Sommer: Sonne im Hintergrund + sanfter Himmels-Verlauf */
.drk-splash[data-season="sommer"] .drk-splash__overlay {
    background: linear-gradient(180deg, #5DA5E8 0%, #7CB9E8 50%, #A8D5F0 100%);
}

/* Urlaub: Himmel-zu-Meer-Verlauf (tuerkis) + Sonne wie beim Sommer */
.drk-splash[data-season="urlaub"] .drk-splash__overlay {
    background: linear-gradient(180deg, #5DA5E8 0%, #6FD0C6 45%, #40BFB4 75%, #2FA79D 100%);
}

/* Sonne selbst kommt komplett aus dem SVG (buildSunRays) — hier nur der Puls */
@keyframes drk-splash-sun-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

/* === Decoration-Layer (zwischen Overlay und Canvas) === */
.drk-splash__decorations {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    /* Maus-Parallax: --drk-px / --drk-py werden per JS gesetzt */
    transform: translate3d(var(--drk-px, 0px), var(--drk-py, 0px), 0);
    transition: transform 240ms cubic-bezier(0.2, 0.8, 0.3, 1);
    will-change: transform;
}

/* === Skip-Burst (Mini-Konfetti beim Skip-Klick) === */
.drk-splash__skip-burst {
    position: fixed;
    z-index: 9999999;
    pointer-events: none;
    width: 0;
    height: 0;
}
.drk-splash__skip-particle {
    position: absolute;
    top: 0; left: 0;
    width: 9px; height: 9px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: drk-skip-burst 700ms cubic-bezier(0.2, 0.7, 0.4, 1) forwards;
}
@keyframes drk-skip-burst {
    0%   { transform: translate(-50%, -50%) scale(0);   opacity: 1; }
    20%  { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
    100% {
        transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.6);
        opacity: 0;
    }
}

.drk-splash__deco {
    position: absolute;
}

/* --- Halloween: Kuerbis --- */
.drk-splash__deco--pumpkin {
    bottom: 5%;
    right: 6%;
    width: clamp(110px, 18vmin, 220px);
    height: auto;
    filter: drop-shadow(0 0 24px rgba(255, 117, 24, 0.55));
}
.drk-splash__deco-eye {
    transform-origin: center;
    transform-box: fill-box;
    animation: drk-flicker 1.6s ease-in-out infinite;
}
.drk-splash__deco-eye:nth-of-type(odd) { animation-delay: 0.4s; }
@keyframes drk-flicker {
    0%, 100% { opacity: 1; }
    42%      { opacity: 0.55; }
    50%      { opacity: 1; }
    63%      { opacity: 0.35; }
    72%      { opacity: 1; }
}

/* --- Halloween: Flammen am Boden --- */
.drk-splash__deco--flames {
    left: 0; right: 0; bottom: 0;
    height: clamp(70px, 12vmin, 130px);
    background: linear-gradient(to top, rgba(255, 100, 0, 0.85) 0%, rgba(255, 220, 0, 0.55) 35%, rgba(255, 220, 0, 0.0) 100%);
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' preserveAspectRatio='none'><path d='M0 30 Q5 12 10 22 T20 14 T30 24 T40 10 T50 18 T60 8 T70 22 T80 12 T90 20 T100 14 L100 30 Z' fill='black'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' preserveAspectRatio='none'><path d='M0 30 Q5 12 10 22 T20 14 T30 24 T40 10 T50 18 T60 8 T70 22 T80 12 T90 20 T100 14 L100 30 Z' fill='black'/></svg>");
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    animation: drk-flame-flicker 0.45s ease-in-out infinite alternate;
    transform-origin: bottom center;
}
@keyframes drk-flame-flicker {
    from { transform: scaleY(1)    translateY(0); opacity: 0.9; }
    to   { transform: scaleY(1.12) translateY(-3px); opacity: 1; }
}

/* --- Weihnachten: Schneemann --- */
.drk-splash__deco--snowman {
    bottom: 4%;
    right: 5%;
    width: clamp(80px, 14vmin, 170px);
    height: auto;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
    animation: drk-bob 4s ease-in-out 600ms infinite;
}
@keyframes drk-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* --- Weihnachten: Tannenbaum --- */
.drk-splash__deco--tree {
    bottom: 4%;
    left: 5%;
    width: clamp(80px, 14vmin, 170px);
    height: auto;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
}
.drk-splash__deco-twinkle {
    transform-origin: center;
    transform-box: fill-box;
    animation: drk-twinkle 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px #FFD700);
}
@keyframes drk-twinkle {
    0%, 100% { transform: scale(1)   rotate(0deg); }
    50%      { transform: scale(1.25) rotate(15deg); }
}

/* --- Silvester: Rakete (steigt von unten zur Mitte/oben + faded) --- */
.drk-splash__deco--rocket {
    bottom: -120px;
    left: 50%;
    width: clamp(50px, 8vmin, 90px);
    height: auto;
    transform: translateX(-50%);
    animation: drk-rocket-launch 3.4s cubic-bezier(0.3, 0.0, 0.5, 1) 200ms forwards;
    filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.6));
}
@keyframes drk-rocket-launch {
    0%   { bottom: -120px; transform: translateX(-50%) rotate(0deg);   opacity: 1; }
    55%  { bottom: 35%;    transform: translateX(-130%) rotate(-12deg); opacity: 1; }
    85%  { bottom: 70%;    transform: translateX(-220%) rotate(-22deg); opacity: 0.8; }
    100% { bottom: 78%;    transform: translateX(-260%) rotate(-25deg); opacity: 0; }
}
.drk-splash__deco-flame {
    transform-origin: top center;
    transform-box: fill-box;
    animation: drk-flame-shimmer 0.18s linear infinite alternate;
}
@keyframes drk-flame-shimmer {
    from { transform: scaleY(1);    opacity: 1; }
    to   { transform: scaleY(1.25); opacity: 0.85; }
}

/* --- Ostern: Hase --- */
.drk-splash__deco--bunny {
    bottom: 5%;
    left: 6%;
    width: clamp(70px, 12vmin, 150px);
    height: auto;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.22));
    animation: drk-bunny-hop 3s ease-in-out 800ms infinite;
}
@keyframes drk-bunny-hop {
    0%, 88%, 100% { transform: translateY(0); }
    92%, 96%      { transform: translateY(-18px); }
}

/* --- Ostern: Tulpen --- */
.drk-splash__deco--flowers {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(220px, 50vmin, 380px);
    height: clamp(70px, 12vmin, 110px);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
}

/* --- Fasching: bunte Streamers --- */
.drk-splash__deco--streamers { inset: 0; }
.drk-splash__streamer {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 70%;
    transform-origin: top center;
    border-radius: 0 0 4px 4px;
    animation: drk-streamer-sway 3s ease-in-out infinite;
}
.drk-splash__streamer--0 { left: 8%;  background: linear-gradient(to bottom, #FF3B82, transparent); animation-delay: 0s;   }
.drk-splash__streamer--1 { left: 22%; background: linear-gradient(to bottom, #FFD700, transparent); animation-delay: 0.4s; }
.drk-splash__streamer--2 { left: 40%; background: linear-gradient(to bottom, #3FB8FF, transparent); animation-delay: 0.8s; }
.drk-splash__streamer--3 { left: 60%; background: linear-gradient(to bottom, #7CFF7C, transparent); animation-delay: 1.2s; }
.drk-splash__streamer--4 { left: 78%; background: linear-gradient(to bottom, #FF7C00, transparent); animation-delay: 1.6s; }
.drk-splash__streamer--5 { left: 92%; background: linear-gradient(to bottom, #C24DFF, transparent); animation-delay: 2.0s; }
@keyframes drk-streamer-sway {
    0%, 100% { transform: rotate(-5deg); }
    50%      { transform: rotate( 5deg); }
}

/* --- Sommer: Wellen am unteren Rand --- */
.drk-splash__deco--waves {
    left: 0; right: 0; bottom: 0;
    height: clamp(50px, 9vmin, 90px);
    background: linear-gradient(to bottom, rgba(44, 125, 184, 0) 0%, rgba(44, 125, 184, 0.85) 60%, #2C7DB8 100%);
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30' preserveAspectRatio='none'><path d='M0 14 Q25 4 50 14 T100 14 T150 14 T200 14 L200 30 L0 30 Z' fill='black'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30' preserveAspectRatio='none'><path d='M0 14 Q25 4 50 14 T100 14 T150 14 T200 14 L200 30 L0 30 Z' fill='black'/></svg>");
    -webkit-mask-size: 200% 100%;
            mask-size: 200% 100%;
    animation: drk-wave-shift 7s linear infinite;
}
@keyframes drk-wave-shift {
    from { -webkit-mask-position: 0% 0%;    mask-position: 0% 0%; }
    to   { -webkit-mask-position: -200% 0%; mask-position: -200% 0%; }
}

/* --- Herbst: grosse schwebende Blaetter --- */
.drk-splash__deco--herbst-leaves { inset: 0; }
.drk-splash__big-leaf {
    position: absolute;
    width: clamp(50px, 8vmin, 90px);
    height: auto;
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
    transform-origin: top center;
    animation: drk-leaf-sway 5s ease-in-out infinite;
}
.drk-splash__big-leaf--0 { top:  8%; left:  6%; animation-delay: 0s;    }
.drk-splash__big-leaf--1 { top: 22%; right: 8%; animation-delay: 1.6s;  }
.drk-splash__big-leaf--2 { top: 65%; left: 10%; animation-delay: 3.2s;  }
@keyframes drk-leaf-sway {
    0%, 100% { transform: rotate(-18deg) translateY(0); }
    50%      { transform: rotate( 14deg) translateY(8px); }
}

/* ====================================================================
 * WOW-STEIGERUNG: Saison-Highlights (Phase 2)
 * ==================================================================== */

/* --- Halloween: Spinne haengt am Faden vom oberen Rand --- */
.drk-splash__deco--spider {
    top: -60px;
    left: 26%;
    width: clamp(40px, 6vmin, 70px);
    height: auto;
    animation: drk-spider-drop 4s cubic-bezier(0.5, 0.0, 0.5, 1) 800ms forwards;
}
.drk-splash__deco--spider::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.45) 60%);
    transform: translateX(-50%);
}
.drk-splash__spider-body {
    width: 100%;
    height: auto;
    transform-origin: top center;
    animation: drk-spider-sway 1.4s ease-in-out infinite alternate;
}
@keyframes drk-spider-drop {
    0%   { top: -60px; }
    65%  { top: 30vh; }
    72%  { top: 26vh; }
    100% { top: 28vh; }
}
@keyframes drk-spider-sway {
    from { transform: rotate(-6deg); }
    to   { transform: rotate(6deg); }
}

/* --- Halloween: Pumpkin-Glow pulst zusaetzlich zum Augen-Flicker --- */
.drk-splash__deco--pumpkin {
    animation: drk-pumpkin-glow 2.8s ease-in-out infinite;
}
@keyframes drk-pumpkin-glow {
    0%, 100% { filter: drop-shadow(0 0 18px rgba(255, 117, 24, 0.45)); }
    50%      { filter: drop-shadow(0 0 36px rgba(255, 180, 50, 0.85)); }
}

/* --- Weihnachten: Santa-Schlitten fliegt am oberen Rand quer --- */
.drk-splash__deco--sleigh {
    top: 7%;
    left: -25%;
    width: clamp(140px, 22vmin, 260px);
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
    animation: drk-sleigh-fly 3.6s cubic-bezier(0.4, 0.0, 0.6, 1) 900ms forwards;
}
@keyframes drk-sleigh-fly {
    0%   { left: -25%; top: 9%; transform: rotate(-3deg); }
    50%  {              top: 5%; transform: rotate( 0deg); }
    100% { left: 110%; top: 4%; transform: rotate( 4deg); }
}

/* --- Weihnachten: Geschenke unter dem Tannenbaum --- */
.drk-splash__deco--presents {
    bottom: 4%;
    left: 18%;
    width: clamp(80px, 12vmin, 140px);
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* --- Sommer: rotierende Sonnenstrahlen hinter der Sonne --- */
.drk-splash__deco--sun-rays {
    top: 2%;
    right: 4%;
    width: clamp(180px, 32vmin, 360px);
    height: clamp(180px, 32vmin, 360px);
    pointer-events: none;
    animation: drk-splash-sun-pulse 4s ease-in-out infinite;
}
.drk-splash__sun-rays-group {
    transform-origin: 100px 100px;
    animation: drk-sun-rotate 28s linear infinite;
}
@keyframes drk-sun-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* --- Sommer: 3 Moewen-Silhouetten ziehen quer --- */
.drk-splash__deco--seagulls { inset: 0; }
.drk-splash__seagull {
    position: absolute;
    width: clamp(22px, 3.5vmin, 42px);
    height: auto;
    opacity: 0.75;
    animation: drk-seagull-fly 8s linear infinite;
}
.drk-splash__seagull--0 { top: 18%; animation-delay: 0s;    animation-duration: 7s;  }
.drk-splash__seagull--1 { top: 28%; animation-delay: 2.2s;  animation-duration: 9s;  }
.drk-splash__seagull--2 { top: 12%; animation-delay: 4.5s;  animation-duration: 8s;  }
@keyframes drk-seagull-fly {
    0%   { left: -8%;  transform: translateY(0); }
    50%  {              transform: translateY(-10px); }
    100% { left: 108%; transform: translateY(0); }
}

/* --- Ostern: Bunny blinzelt rhythmisch --- */
.drk-splash__deco-blink {
    transform-origin: center;
    transform-box: fill-box;
    animation: drk-blink 4s ease-in-out infinite;
}
@keyframes drk-blink {
    0%, 96%, 100% { transform: scaleY(1); }
    98%           { transform: scaleY(0.1); }
}

/* --- Ostern: Tulpen wachsen in den ersten 800ms hoch --- */
.drk-splash__deco--flowers {
    transform-origin: bottom center;
    animation: drk-flowers-grow 800ms cubic-bezier(0.3, 1.4, 0.5, 1) forwards;
}
@keyframes drk-flowers-grow {
    0%   { transform: translateX(-50%) scaleY(0); opacity: 0; }
    100% { transform: translateX(-50%) scaleY(1); opacity: 1; }
}

/* --- Fasching: Konfetti-Big-Bang aus der Mitte --- */
.drk-splash__big-bang {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    width: 0;
    height: 0;
}
.drk-splash__big-bang-piece {
    position: absolute;
    top: 0; left: 0;
    width: 12px; height: 16px;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 2px;
    animation: drk-big-bang 1.5s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
}
@keyframes drk-big-bang {
    0%   { transform: translate(-50%, -50%) scale(0)   rotate(0deg);   opacity: 1; }
    18%  { transform: translate(-50%, -50%) scale(1.1) rotate(180deg); opacity: 1; }
    100% {
        transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.5) rotate(720deg);
        opacity: 0;
    }
}

/* --- Silvester: Schock-Text "Frohes Neues!" am Apex --- */
.drk-splash__shock-text {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    z-index: 6;
    color: #FFD700;
    font-family: 'Bangers', system-ui, sans-serif;
    font-size: clamp(2rem, 7vmin, 4.5rem);
    letter-spacing: 0.04em;
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.85),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 100, 0, 0.4);
    pointer-events: none;
    animation: drk-shock-pop 1.3s cubic-bezier(0.3, 1.8, 0.4, 1) forwards;
}
@keyframes drk-shock-pop {
    0%   { transform: translateX(-50%) scale(0)    rotate(-8deg); opacity: 0; }
    25%  { transform: translateX(-50%) scale(1.2)  rotate( 3deg); opacity: 1; }
    45%  { transform: translateX(-50%) scale(1.0)  rotate(-1deg); opacity: 1; }
    80%  { transform: translateX(-50%) scale(1.05) rotate( 0deg); opacity: 1; }
    100% { transform: translateX(-50%) scale(1.1)  rotate( 0deg); opacity: 0; }
}

/* --- Herbst: Wind-Stoss schiebt grosse Blaetter weg --- */
.drk-splash__big-leaf--gust {
    animation: drk-leaf-gust 1.6s cubic-bezier(0.3, 0.0, 0.4, 1) forwards !important;
}
@keyframes drk-leaf-gust {
    0%   { transform: rotate(0deg)   translate(0, 0);          opacity: 1; }
    100% { transform: rotate(540deg) translate(120vw, -25vh);  opacity: 0; }
}

/* === WM: Fussballtor (Hintergrund-Layer links unten) === */
.drk-splash__deco--goal {
    bottom: 6%;
    left: 4%;
    width: clamp(140px, 24vmin, 320px);
    height: auto;
    opacity: 0.75;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    animation: drk-goal-fade-in 700ms ease-out 300ms backwards;
}
@keyframes drk-goal-fade-in {
    from { opacity: 0;    transform: translateY(20px) scale(0.94); }
    to   { opacity: 0.75; transform: translateY(0)    scale(1); }
}

/* === WM: Grosser Fussball (rotiert, atmet leicht, rechts unten) === */
.drk-splash__deco--football {
    bottom: 8%;
    right: 6%;
    width: clamp(110px, 18vmin, 220px);
    height: auto;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
    animation:
        drk-football-spin 8s linear infinite,
        drk-football-pop 500ms cubic-bezier(0.3, 1.6, 0.5, 1) 200ms backwards;
}
@keyframes drk-football-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes drk-football-pop {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}

/* === WM: Mini-Fussball neben dem Fisch (tanzt mit) === */
.drk-splash__mini-ball {
    position: absolute;
    width: 30%;
    height: auto;
    right: -18%;
    top: 35%;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.45));
    opacity: 0;
    animation:
        drk-mini-ball-in 400ms cubic-bezier(0.3, 1.6, 0.5, 1) 700ms forwards,
        drk-mini-ball-dance 1.6s ease-in-out 1.1s infinite;
}
@keyframes drk-mini-ball-in {
    from { opacity: 0; transform: scale(0) rotate(-180deg); }
    to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes drk-mini-ball-dance {
    0%, 100% { transform: translateY(0)    rotate(0deg); }
    25%      { transform: translateY(-12px) rotate(80deg); }
    50%      { transform: translateY(0)    rotate(180deg); }
    75%      { transform: translateY(-8px) rotate(260deg); }
}

/* === Partikel-Canvas === */
.drk-splash__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* === Content-Stack === */
.drk-splash__content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 90vw;
}

/* === Fisch + optionaler Wrapper (fuer Overlays wie Sonnenbrille) === */
.drk-splash__fish-wrap {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.drk-splash__fish {
    width: clamp(120px, 22vmin, 280px);
    height: auto;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 500ms ease-out 200ms, transform 500ms ease-out 200ms;
    will-change: transform, opacity;
}

.drk-splash--enter .drk-splash__fish {
    opacity: 1;
    transform: scale(1);
    animation: drk-splash-float 3s ease-in-out 700ms infinite;
}

/* Sonnenbrille bewegt sich mit dem Fisch mit (parent transform via fish-wrap) */
.drk-splash--enter .drk-splash__fish-wrap {
    animation: drk-splash-float 3s ease-in-out 700ms infinite;
}

.drk-splash--enter .drk-splash__fish {
    animation: none;
}

@keyframes drk-splash-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-6px) scale(1); }
}

/* === Claim "We rock your smile" === */
.drk-splash__claim {
    position: relative;
    color: var(--claim);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    font-size: clamp(2.2rem, 8vmin, 5.5rem);
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.drk-splash__claim-text {
    display: inline-block;
    position: relative;
}

/* Letter-by-Letter-Animation: jeder Buchstabe springt zeitversetzt rein */
.drk-splash__claim-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px) scale(0.7);
    transition: opacity 320ms cubic-bezier(0.3, 1.5, 0.5, 1),
                transform 320ms cubic-bezier(0.3, 1.5, 0.5, 1);
    /* --i wird per JS gesetzt, Delay: 200ms Basis + 35ms pro Letter */
    transition-delay: calc(200ms + var(--i, 0) * 35ms);
}

.drk-splash--enter .drk-splash__claim-letter {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.drk-splash__claim-underline {
    display: block;
    height: 0.18em;
    margin-top: 0.18em;
    background: var(--underline);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 600ms cubic-bezier(0.5, 0.1, 0.2, 1) 700ms;
}

.drk-splash--enter .drk-splash__claim-underline {
    transform: scaleX(1);
}

/* === Saison-Badge === */
.drk-splash__badge {
    display: inline-block;
    padding: 0.35em 0.9em;
    background: var(--badge-bg);
    color: var(--badge-fg);
    font-size: clamp(1rem, 3.5vmin, 1.6rem);
    letter-spacing: 0.05em;
    border-radius: 0.3em;
    transform: rotate(-2deg);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 400ms ease-out 600ms, transform 400ms ease-out 600ms;
}

.drk-splash--enter .drk-splash__badge {
    opacity: 1;
    transform: rotate(-2deg) scale(1);
}

.drk-splash__badge[hidden] {
    display: none !important;
}

/* === Zusatzzeile unter dem Badge (Urlaubs-Zeitraum o.ae.) === */
.drk-splash__note {
    margin-top: 0.8em;
    padding: 0.3em 0.9em;
    background: rgba(255, 255, 255, 0.92);
    color: #0B5563;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: clamp(0.85rem, 2.4vmin, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 0.3em;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.10);
    opacity: 0;
    transition: opacity 400ms ease-out 800ms, transform 400ms ease-out 800ms;
    transform: translateY(6px);
}

.drk-splash--enter .drk-splash__note {
    opacity: 1;
    transform: translateY(0);
}

/* === Skip-Button === */
.drk-splash__skip {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 5;
    padding: 0.5em 1em;
    background: transparent;
    border: 2px solid var(--claim);
    color: var(--claim);
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    border-radius: 0.25em;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 200ms ease-out, transform 200ms ease-out;
}

.drk-splash__skip:hover,
.drk-splash__skip:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

/* === Mobile Tweaks === */
@media (max-width: 640px) {
    .drk-splash__content {
        gap: 1rem;
        padding: 1rem;
    }

    .drk-splash__skip {
        bottom: 0.75rem;
        right: 0.75rem;
        font-size: 0.85rem;
    }
}

/* === Reduced-Motion === */
@media (prefers-reduced-motion: reduce) {
    .drk-splash,
    .drk-splash--enter,
    .drk-splash--leave,
    .drk-splash__fish,
    .drk-splash__fish-wrap,
    .drk-splash__claim,
    .drk-splash__claim-underline,
    .drk-splash__badge,
    .drk-splash__note,
    .drk-splash[data-season="urlaub"] .drk-splash__overlay::after,
    .drk-splash[data-season="sommer"] .drk-splash__overlay::after {
        transition: opacity 200ms ease-out !important;
        animation: none !important;
        transform: none !important;
    }

    .drk-splash--enter .drk-splash__fish,
    .drk-splash--enter .drk-splash__claim,
    .drk-splash--enter .drk-splash__badge,
    .drk-splash--enter .drk-splash__note {
        opacity: 1;
    }

    .drk-splash--enter .drk-splash__claim-underline {
        transform: scaleX(1) !important;
    }

    .drk-splash__canvas {
        display: none !important;
    }

    /* Decorations + WOW-Effekte: Animationen aus, statisch sichtbar */
    .drk-splash__decorations,
    .drk-splash__decorations *,
    .drk-splash__deco,
    .drk-splash__deco-eye,
    .drk-splash__deco-twinkle,
    .drk-splash__deco-flame,
    .drk-splash__deco-blink,
    .drk-splash__streamer,
    .drk-splash__big-leaf,
    .drk-splash__spider-body,
    .drk-splash__sun-rays-group,
    .drk-splash__seagull,
    .drk-splash__claim-letter {
        animation: none !important;
        transition: none !important;
    }

    /* Letter-by-Letter: Buchstaben sofort sichtbar bei Reduced-Motion */
    .drk-splash--enter .drk-splash__claim-letter {
        opacity: 1;
        transform: none;
    }

    /* Maus-Parallax aus */
    .drk-splash__decorations {
        transform: none !important;
    }

    /* Rakete: fixiere auf sichtbarer Position */
    .drk-splash__deco--rocket {
        bottom: 60% !important;
        opacity: 1 !important;
        transform: translateX(-130%) rotate(-15deg) !important;
    }

    /* Spinne: hange statisch im oberen Drittel */
    .drk-splash__deco--spider {
        top: 28vh !important;
    }

    /* Santa-Sleigh: positioniere sichtbar oben rechts statt zu fliegen */
    .drk-splash__deco--sleigh {
        left: 60% !important;
        top: 6% !important;
        transform: rotate(0deg) !important;
    }

    /* Tulpen: sofort voll ausgewachsen */
    .drk-splash__deco--flowers {
        transform: translateX(-50%) scaleY(1) !important;
        opacity: 1 !important;
    }

    /* WM: Fussball / Tor / Mini-Ball statisch */
    .drk-splash__deco--football,
    .drk-splash__deco--goal,
    .drk-splash__mini-ball {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
