* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --background: #070a14;
    --blue: #2db9ff;
    --purple: #7457ff;
    --yellow: #ffd638;
    --orange: #ff9d32;
    --red: #a51515;
    --white: #ffffff;
    --soft-white: #dce7ff;
    --card: rgba(255, 255, 255, 0.08);
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);

    background:
        radial-gradient(
            circle at top left,
            rgba(45, 185, 255, 0.2),
            transparent 36%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(116, 87, 255, 0.24),
            transparent 40%
        ),
        var(--background);
}

.presentation {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        65px
        clamp(30px, 7vw, 120px)
        105px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(80px) scale(0.97);

    transition:
        opacity 0.5s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.5s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0) scale(1);
}

.slide.previous {
    transform: translateX(-80px) scale(0.97);
}

.slide-content {
    position: relative;
    z-index: 2;

    width: min(1150px, 100%);
}

.centered {
    text-align: center;
}

.narrow {
    width: min(850px, 100%);
}

h1 {
    margin-bottom: 22px;

    font-size: clamp(4rem, 9vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-transform: uppercase;

    text-shadow:
        0 8px 0 rgba(0, 0, 0, 0.25),
        0 20px 50px rgba(45, 185, 255, 0.22);
}

h2 {
    margin-bottom: 30px;

    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.eyebrow {
    margin-bottom: 16px;

    color: var(--yellow);

    font-size: clamp(0.8rem, 1.3vw, 1.05rem);
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.subtitle,
.large-text {
    color: var(--soft-white);
    line-height: 1.5;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.large-text {
    max-width: 720px;
    margin: 0 auto;

    font-size: clamp(1.05rem, 1.8vw, 1.55rem);
}

.left-text {
    margin-left: 0;
}

.fortnite-logo {
    display: block;

    width: min(480px, 70vw);
    max-height: 170px;
    margin: 0 auto 25px;

    object-fit: contain;

    filter:
        drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 25px rgba(45, 185, 255, 0.3));

    animation: logoFloat 3s ease-in-out infinite;
}

.start-hint {
    display: inline-block;

    margin-top: 35px;
    padding: 12px 20px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.07);

    font-size: 0.9rem;

    animation: hintPulse 2s ease-in-out infinite;
}

.background-shape {
    position: absolute;

    border-radius: 50%;
    opacity: 0.28;
    filter: blur(8px);
}

.shape-one {
    top: 5%;
    left: 5%;

    width: 310px;
    height: 310px;

    background: var(--blue);

    animation: shapeOne 8s ease-in-out infinite alternate;
}

.shape-two {
    right: 7%;
    bottom: 8%;

    width: 370px;
    height: 370px;

    background: var(--purple);

    animation: shapeTwo 9s ease-in-out infinite alternate;
}

.mode-overview {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 28px;

    margin-top: 45px;
}

.mode-card {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: min(380px, 40vw);
    min-height: 230px;
    padding: 30px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(12px);

    opacity: 0;
    transform: translateY(40px);
}

.active .mode-card {
    animation: cardEnter 0.65s forwards;
}

.active .mode-card:nth-child(1) {
    animation-delay: 0.15s;
}

.active .mode-card:nth-child(3) {
    animation-delay: 0.4s;
}

.mode-card.highlighted {
    border-color: rgba(255, 214, 56, 0.6);

    box-shadow:
        0 0 45px rgba(255, 214, 56, 0.12);
}

.mode-number {
    position: absolute;
    top: 12px;
    right: 20px;

    color: rgba(255, 255, 255, 0.09);

    font-size: 5rem;
    font-weight: 1000;
}

.mode-card strong {
    position: relative;

    margin-bottom: 12px;

    font-size: clamp(1.8rem, 3vw, 3rem);
}

.mode-card small {
    position: relative;

    color: var(--soft-white);

    font-size: 1rem;
    line-height: 1.45;
}

.mode-divider {
    align-self: center;

    color: rgba(255, 255, 255, 0.45);

    font-weight: 900;
    text-transform: uppercase;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(45px, 7vw, 100px);

    width: min(1250px, 100%);
}

.image-column {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;

    width: min(520px, 100%);
    padding: 11px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 27px;

    background: rgba(255, 255, 255, 0.09);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.48),
        0 0 45px rgba(45, 185, 255, 0.1);

    backdrop-filter: blur(10px);
}

.image-frame img {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;

    object-fit: cover;

    border-radius: 19px;
}

.hunger-frame img {
    aspect-ratio: 1200 / 630;
}

.tilted-left {
    transform: rotate(-3deg);
}

.tilted-right {
    transform: rotate(3deg);
}

.active .tilted-left {
    animation: imageLeft 0.8s 0.1s both;
}

.active .tilted-right {
    animation: imageRight 0.8s 0.1s both;
}

.image-label {
    position: absolute;
    right: 24px;
    bottom: 24px;

    padding: 10px 15px;

    border-radius: 999px;

    color: #07101f;
    background: var(--yellow);

    font-size: 0.85rem;
    font-weight: 900;
}

.orange-label {
    color: #140900;
    background: var(--orange);
}

.fact-list {
    display: grid;
    gap: 14px;
}

.fact-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    background: var(--card);

    opacity: 0;
    transform: translateY(30px);
}

.active .fact-card {
    animation: cardEnter 0.55s forwards;
}

.active .fact-card:nth-child(1) {
    animation-delay: 0.15s;
}

.active .fact-card:nth-child(2) {
    animation-delay: 0.32s;
}

.active .fact-card:nth-child(3) {
    animation-delay: 0.49s;
}

.fact-icon {
    font-size: 2rem;
}

.fact-card strong {
    display: block;
    margin-bottom: 5px;

    font-size: 1.15rem;
}

.fact-card p {
    color: var(--soft-white);
    line-height: 1.4;
}

.big-statement {
    display: inline-block;

    margin-bottom: 25px;
    padding: 14px 22px;

    border-radius: 14px;

    color: #07101f;
    background: var(--yellow);

    font-size: clamp(1.3rem, 2.8vw, 2.2rem);
    font-weight: 1000;
    text-transform: uppercase;

    transform: rotate(-2deg);
}

.cosmetic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 28px;
}

.cosmetic-tags span {
    padding: 10px 15px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    font-weight: 800;

    opacity: 0;
    transform: scale(0.6);
}

.active .cosmetic-tags span {
    animation: tagPop 0.4s forwards;
}

.active .cosmetic-tags span:nth-child(1) {
    animation-delay: 0.25s;
}

.active .cosmetic-tags span:nth-child(2) {
    animation-delay: 0.38s;
}

.active .cosmetic-tags span:nth-child(3) {
    animation-delay: 0.51s;
}

.active .cosmetic-tags span:nth-child(4) {
    animation-delay: 0.64s;
}

.island-wrapper {
    position: relative;

    width: min(850px, 92%);
    margin: 35px auto 0;
}

.island-image {
    display: block;

    width: 100%;
    height: min(48vh, 440px);

    object-fit: cover;

    border-radius: 30px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.52),
        0 0 60px rgba(45, 185, 255, 0.18);
}

.active .island-image {
    animation: islandEnter 1s both;
}

.player-counter {
    position: absolute;
    top: 24px;
    right: 24px;

    display: flex;
    flex-direction: column;

    min-width: 145px;
    padding: 17px 22px;

    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 19px;

    background: rgba(7, 10, 20, 0.84);

    backdrop-filter: blur(10px);
}

.player-counter span {
    color: var(--yellow);

    font-size: 3rem;
    font-weight: 1000;
    line-height: 1;
}

.player-counter small {
    margin-top: 5px;

    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dramatic-slide {
    background:
        radial-gradient(
            circle,
            rgba(116, 87, 255, 0.2),
            transparent 55%
        );
}

.elimination-animation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 25px);

    margin: 35px auto;

    font-size: clamp(2rem, 5vw, 4.3rem);
}

.player {
    color: rgba(255, 255, 255, 0.82);

    opacity: 0;
    transform: translateY(-25px) scale(1.3);
}

.active .player {
    animation: playerEliminated 1.2s forwards;
}

.active .winner-player {
    color: var(--yellow);
    animation-name: winnerEnter;
    animation-delay: 0.1s;
}

.active .player:nth-child(2) {
    animation-delay: 0.2s;
}

.active .player:nth-child(3) {
    animation-delay: 0.3s;
}

.active .player:nth-child(4) {
    animation-delay: 0.4s;
}

.active .player:nth-child(5) {
    animation-delay: 0.5s;
}

.active .player:nth-child(6) {
    animation-delay: 0.6s;
}

.active .player:nth-child(7) {
    animation-delay: 0.7s;
}

.active .player:nth-child(8) {
    animation-delay: 0.8s;
}

.active .player:nth-child(9) {
    animation-delay: 0.9s;
}

.active .player:nth-child(10) {
    animation-delay: 1s;
}

.delayed-text {
    opacity: 0;
}

.active .delayed-text {
    animation: fadeUp 0.6s 1.2s forwards;
}

.victory-image {
    display: block;

    width: min(460px, 78vw);
    aspect-ratio: 1704 / 600;
    height: auto;
    margin: 28px auto 0;

    object-fit: contain;

    filter:
        drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 30px rgba(255, 214, 56, 0.3));

    opacity: 0;
}

.active .victory-image {
    animation: victoryEnter 0.65s 1.55s forwards;
}

.suspense-slide {
    background:
        radial-gradient(
            circle at center,
            rgba(255, 214, 56, 0.1),
            transparent 42%
        ),
        #060811;
}

.suspense-text {
    opacity: 0;
}

.active .suspense-text {
    animation: suspenseEnter 1.1s 0.1s forwards;
}

.delayed-question {
    opacity: 0;
}

.active .delayed-question {
    animation: fadeUp 0.7s 0.75s forwards;
}

.thinking-dots {
    display: flex;
    justify-content: center;
    gap: 17px;

    margin-top: 50px;
}

.thinking-dots span {
    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: var(--yellow);

    animation: thinkingDot 1.4s ease-in-out infinite;
}

.thinking-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.thinking-dots span:nth-child(3) {
    animation-delay: 0.4s;
}


/* Battle-Royale-Film als vermeintlich offensichtliche Antwort */

.battle-movie-slide {
    background:
        radial-gradient(
            circle at center,
            rgba(180, 20, 20, 0.24),
            transparent 55%
        ),
        #06070b;
}

.fake-answer-wrapper {
    position: relative;

    width: min(430px, 82vw);
    margin: 0 auto;
}

.movie-image {
    display: block;

    width: 100%;
    aspect-ratio: 452 / 678;
    height: auto;
    margin: 0 auto;

    object-fit: cover;

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65);
}

.battle-movie-image {
    filter:
        brightness(0.72)
        contrast(1.08)
        saturate(0.85);
}

.movie-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 28px;

    background:
        linear-gradient(
            transparent 60%,
            rgba(0, 0, 0, 0.55)
        );

    pointer-events: none;
}

.fake-answer {
    position: static;

    z-index: 2;

    width: 100%;
    margin: 22px auto 0;

    font-size: clamp(2.4rem, 9vw, 4rem);
    text-align: center;

    text-shadow:
        0 5px 20px black,
        0 0 40px black;

    opacity: 0;
    transform: translateY(35px) scale(0.9);
}

.active .fake-answer {
    animation: fakeAnswerEnter 0.7s 0.25s forwards;
}

.year-stamp {
    position: absolute;
    top: 24px;
    right: 38px;

    z-index: 3;

    padding: 10px 17px;

    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 7px;

    color: white;
    background: var(--red);

    font-size: 1.4rem;
    font-weight: 1000;

    opacity: 0;
    transform: rotate(12deg) scale(2);
}

.active .year-stamp {
    animation: yearStampEnter 0.55s 0.8s forwards;
}


/* Tribute-von-Panem-Auflösung */

.reveal-slide {
    background:
        radial-gradient(
            circle at center,
            rgba(255, 125, 25, 0.23),
            transparent 50%
        ),
        #07080d;
}

.reveal-flash {
    position: absolute;
    inset: 0;

    z-index: 5;

    background: white;

    opacity: 0;
    pointer-events: none;
}

.reveal-slide.active .reveal-flash {
    animation: revealFlash 0.55s both;
}

.correct-answer {
    margin-bottom: 8px;

    color: var(--orange);

    font-size: clamp(2rem, 4vw, 3.7rem);
}

.movie-title {
    margin-bottom: 20px;

    font-size: clamp(3.5rem, 6.8vw, 6.8rem);
}

.hunger-title {
    text-shadow:
        0 8px 0 rgba(0, 0, 0, 0.28),
        0 0 40px rgba(255, 125, 25, 0.2);
}

.hunger-frame {
    border-color: rgba(255, 145, 40, 0.4);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 70px rgba(255, 120, 20, 0.2);
}

.small-comparison {
    display: inline-block;

    margin-top: 25px;
    padding: 11px 16px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.07);

    font-size: 0.95rem;
}

.final-slide {
    background:
        radial-gradient(
            circle at center,
            rgba(45, 185, 255, 0.18),
            transparent 58%
        );
}

.summary-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 4vw, 45px);

    margin: 35px 0;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 140px;
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.08);
}

.summary-item span {
    color: var(--yellow);

    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 1000;
    line-height: 1;
}

.summary-item small {
    margin-top: 7px;

    font-weight: 900;
    text-transform: uppercase;
}

.arrow {
    color: var(--blue);

    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 1000;
}

.closing-line {
    color: var(--soft-white);

    font-size: clamp(1.05rem, 2vw, 1.5rem);
}

.skins-image {
    display: block;

    max-width: min(680px, 82vw);
    max-height: 220px;
    margin: 20px auto 0;

    object-fit: contain;

    filter:
        drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));

    opacity: 0;
    transform: translateY(45px);
}

.active .skins-image {
    animation: skinsEnter 0.8s 0.35s forwards;
}

.controls {
    position: fixed;
    right: 34px;
    bottom: 25px;
    left: 34px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;

    pointer-events: none;
}

.control-button,
.slide-counter {
    pointer-events: auto;
}

.control-button {
    min-width: 125px;
    padding: 13px 20px;

    border: none;
    border-radius: 999px;

    font: inherit;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.control-button:hover {
    transform: translateY(-3px);
}

.control-button:disabled {
    cursor: default;
    opacity: 0.25;
    transform: none;
}

.primary-button {
    color: #07101f;
    background: var(--yellow);
}

.secondary-button {
    color: white;
    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);
}

.slide-counter {
    padding: 10px 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;

    background: rgba(7, 10, 20, 0.74);

    font-weight: 900;

    backdrop-filter: blur(10px);

    /* Ausgeblendet – der Fortschritt wird über die Leiste oben angezeigt */
    display: none;
}

.keyboard-hint {
    position: fixed;
    bottom: 7px;
    left: 50%;

    z-index: 19;

    color: rgba(255, 255, 255, 0.38);

    font-size: 0.7rem;

    transform: translateX(-50%);
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 30;

    width: 100%;
    height: 6px;

    background: rgba(255, 255, 255, 0.07);
}

.progress-bar {
    width: 10%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--purple),
            var(--yellow)
        );

    transition: width 0.5s ease;
}

/* Bonus-Rundgang: Wie sieht Fortnite aus? */

.walkthrough-intro-slide h1 {
    color: var(--white);
}

.walkthrough-slide .slide-content {
    width: min(1050px, 100%);
}

.walkthrough-heading {
    margin-bottom: 22px;

    font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.screen-viewer {
    position: relative;

    width: min(920px, 100%);
    aspect-ratio: 16 / 9;
    margin: 0 auto;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;

    background: rgba(0, 0, 0, 0.4);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 45px rgba(45, 185, 255, 0.1);
}

.screen-stack {
    position: absolute;
    inset: 0;
}

.screen {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.5s ease;
}

.screen img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.screen-info {
    min-height: 78px;
    margin-top: 22px;
}

.screen-caption {
    font-size: clamp(1.2rem, 2.4vw, 1.9rem);
    font-weight: 900;
}

.screen-note {
    max-width: 640px;
    margin: 8px auto 0;

    color: var(--soft-white);

    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    line-height: 1.45;
}

.screen-note.buy::before {
    content: "💰 Kaufanreiz · ";

    color: var(--yellow);
    font-weight: 900;
}

.screen-progress {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;

    margin-top: 18px;
}

.screen-progress .dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.22);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.screen-progress .dot.active {
    background: var(--yellow);
    transform: scale(1.35);
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-13px) rotate(1deg);
    }
}

@keyframes hintPulse {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shapeOne {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(95px, 50px) scale(1.2);
    }
}

@keyframes shapeTwo {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-90px, -55px) scale(0.8);
    }
}

@keyframes cardEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageLeft {
    from {
        opacity: 0;
        transform: translateX(90px) rotate(4deg) scale(0.86);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(-3deg) scale(1);
    }
}

@keyframes imageRight {
    from {
        opacity: 0;
        transform: translateX(-90px) rotate(-4deg) scale(0.86);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(3deg) scale(1);
    }
}

@keyframes tagPop {
    70% {
        opacity: 1;
        transform: scale(1.12);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes islandEnter {
    from {
        opacity: 0;
        transform: scale(1.13);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes playerEliminated {
    0% {
        opacity: 0;
        transform: translateY(-25px) scale(1.3);
    }

    25% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    60% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.08;
        transform: scale(0.4);
    }
}

@keyframes winnerEnter {
    0% {
        opacity: 0;
        transform: translateY(-25px) scale(1.3);
    }

    40% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.25);
        text-shadow:
            0 0 30px rgba(255, 214, 56, 0.9);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes victoryEnter {
    0% {
        opacity: 0;
        transform: scale(2.2) rotate(-8deg);
    }

    65% {
        opacity: 1;
        transform: scale(0.9) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes suspenseEnter {
    from {
        opacity: 0;
        letter-spacing: 0.08em;
        filter: blur(8px);
    }

    to {
        opacity: 1;
        letter-spacing: -0.055em;
        filter: blur(0);
    }
}

@keyframes thinkingDot {
    0%,
    70%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    35% {
        opacity: 1;
        transform: translateY(-17px);
    }
}

@keyframes fakeAnswerEnter {
    0% {
        opacity: 0;
        transform: translateY(35px) scale(0.9);
    }

    65% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes yearStampEnter {
    0% {
        opacity: 0;
        transform: rotate(25deg) scale(2.5);
    }

    70% {
        opacity: 1;
        transform: rotate(-7deg) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: rotate(6deg) scale(1);
    }
}

@keyframes revealFlash {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes skinsEnter {
    from {
        opacity: 0;
        transform: translateY(45px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== Bild-Platzhalter (für später einzusetzende Bilder) ===== */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;
    min-height: 320px;
    padding: 34px;

    text-align: center;

    border: 2px dashed rgba(255, 255, 255, 0.28);
    border-radius: 26px;

    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 12px,
            rgba(255, 255, 255, 0.06) 12px,
            rgba(255, 255, 255, 0.06) 24px
        );
}

.image-placeholder .placeholder-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.image-placeholder strong {
    color: var(--yellow);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.image-placeholder .placeholder-desc {
    max-width: 360px;
    color: var(--soft-white);
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    line-height: 1.5;
}


/* ===== Modell-Grid (Change-Prozess) ===== */
.model-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 42px;
}

.model-card {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    width: min(320px, 90vw);
    min-height: 190px;
    padding: 26px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);

    opacity: 0;
    transform: translateY(40px);
}

.active .model-card {
    animation: cardEnter 0.65s forwards;
}

.active .model-card:nth-child(1) { animation-delay: 0.15s; }
.active .model-card:nth-child(2) { animation-delay: 0.3s; }
.active .model-card:nth-child(3) { animation-delay: 0.45s; }

.model-number {
    position: absolute;
    top: 8px;
    right: 18px;

    color: rgba(255, 255, 255, 0.09);
    font-size: 4rem;
    font-weight: 1000;
}

.model-card strong {
    position: relative;
    margin-bottom: 10px;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

.model-card small {
    position: relative;
    color: var(--soft-white);
    font-size: 0.98rem;
    line-height: 1.45;
}

.model-details {
    position: relative;
    margin: 16px 0 0;
    padding: 14px 0 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    list-style: none;
    text-align: left;
}

.model-details li {
    position: relative;

    margin-bottom: 8px;
    padding-left: 20px;

    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.35;
}

.model-details li:last-child {
    margin-bottom: 0;
}

.model-details li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 900;
}

.fact-card small {
    display: block;
    margin-top: 4px;

    color: var(--soft-white);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.35;
}


/* ===== Item-Shop: klickbarer Link in der Notiz ===== */
.note-link {
    color: var(--yellow);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.note-link:hover {
    color: var(--white);
}


/* ===== Item-Shop QR-Code (Desktop/Präsentation, links) ===== */
.itemshop-qr {
    position: absolute;
    left: clamp(20px, 4vw, 70px);
    top: 50%;
    z-index: 6;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    width: 210px;
    padding: 18px;

    border: 1px solid rgba(255, 214, 56, 0.5);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    box-shadow: 0 0 45px rgba(255, 214, 56, 0.15);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-50%) translateX(-24px);
    transition:
        opacity 0.45s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.45s;
}

.itemshop-qr.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.itemshop-qr-title {
    color: var(--yellow);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.itemshop-qr img {
    display: block;
    width: 100%;
    border-radius: 12px;
    background: #fff;
}

.itemshop-qr-hint {
    color: var(--soft-white);
    font-size: 0.82rem;
}

/* QR-Code auf kleinen/Touch-Geräten ausblenden (nur Desktop-Präsentation) */
@media (max-width: 1100px) {
    .itemshop-qr {
        display: none;
    }
}


/* ===== Item-Shop Kachel-Overlay ===== */
.screen-viewer.tiles-open .screen-stack {
    opacity: 0.5;
    filter: saturate(0.85);
    transition: opacity 0.45s ease;
}

.itemshop-tiles {
    position: absolute;
    inset: 0;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2.5vw, 28px);

    padding: clamp(14px, 4vw, 40px);

    opacity: 0;
    pointer-events: none;
    transform: scale(0.97);

    transition:
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.screen-viewer.tiles-open .itemshop-tiles {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.itemshop-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    flex: 1 1 0;
    max-width: 240px;
    min-height: 46%;

    padding: clamp(14px, 2vw, 24px);

    text-align: center;
    text-decoration: none;
    color: #fff;

    border: 1px solid rgba(168, 85, 247, 0.55);
    border-radius: 18px;

    background:
        linear-gradient(160deg,
            rgba(26, 21, 59, 0.92),
            rgba(13, 10, 31, 0.92));

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(168, 85, 247, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.itemshop-tile:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(236, 72, 153, 0.8);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(236, 72, 153, 0.4);
}

.itemshop-tile-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
}

.itemshop-tile-title {
    font-weight: 800;
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
}

.itemshop-tile-sub {
    color: var(--soft-white);
    font-size: 0.8rem;
    opacity: 0.85;
}

@media (max-width: 700px) {
    .itemshop-tiles {
        flex-direction: column;
        gap: 10px;
    }
    .itemshop-tile {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        min-height: 0;
        max-width: none;
        width: 100%;
    }
}


/* ===== Outro-Folie: spielerisch entdecken ===== */
.outro-slide {
    background:
        radial-gradient(
            circle at center,
            rgba(116, 87, 255, 0.22),
            transparent 58%
        ),
        #06070b;
}

.outro-heading {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 6.5vw, 5.5rem);
}

.outro-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 26px;

    margin-top: 44px;
}

.outro-card {
    display: flex;
    align-items: center;
    gap: 18px;

    min-width: 300px;
    padding: 18px 26px 18px 18px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);

    text-decoration: none;
    color: var(--white);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.outro-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.outro-card--fortnite {
    border-color: rgba(255, 214, 56, 0.4);
}

.outro-card--change {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.22);
}

.outro-card--change:hover {
    border-color: rgba(168, 85, 247, 0.9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 32px rgba(168, 85, 247, 0.4);
}

.outro-change-icon {
    display: grid;
    place-items: center;

    width: 74px;
    height: 74px;

    border-radius: 16px;
    background: rgba(168, 85, 247, 0.2);

    font-size: 2.2rem;
}

.outro-gif {
    width: 74px;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.outro-home-icon {
    display: grid;
    place-items: center;

    width: 74px;
    height: 74px;

    border-radius: 16px;
    background: rgba(45, 185, 255, 0.18);

    font-size: 2.2rem;
}

.outro-card-label {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.outro-card-label strong {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.outro-card-label small {
    margin-top: 4px;
    color: var(--soft-white);
    font-size: 0.9rem;
}


@media (max-width: 850px) {
    .slide {
        overflow-y: auto;

        padding:
            55px
            24px
            115px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mode-overview {
        flex-direction: column;
        align-items: center;
    }

    .mode-card {
        width: 100%;
        min-height: 180px;
    }

    .summary-flow {
        gap: 9px;
    }

    .summary-item {
        min-width: 88px;
        padding: 13px 8px;
    }

    .controls {
        right: 14px;
        bottom: 20px;
        left: 14px;
    }

    .control-button {
        min-width: auto;
        padding: 11px 15px;
    }

    .keyboard-hint {
        display: none;
    }
}

@media (max-height: 700px) and (min-width: 851px) {
    .slide {
        padding-top: 42px;
        padding-bottom: 88px;
    }

    h1 {
        font-size: clamp(3.5rem, 7vw, 6rem);
    }

    h2 {
        font-size: clamp(2.4rem, 4.7vw, 4.2rem);
    }

    .fortnite-logo {
        max-height: 120px;
    }
}