:root {
    color-scheme: light !important;
    supported-color-schemes: light !important;
}

html {
    background-color: #fff7fb !important;
}

body {
    background-color: #fff7fb !important;
}

/* TOTAL FORCE */
* {
    forced-color-adjust: none !important;
    -webkit-text-fill-color: initial !important;
}

/* hlavne pre samsung internet */
meta[name="color-scheme"] {
    content: light;
}

/* Chrome / Android forced dark mode fix */
html,
body,
.app,
.screen,
.card,
.memory,
.song-card,
.song-reveal,
.modern-answer,
.countdown {
    forced-color-adjust: none !important;
}

/* Samsung / Chrome dark mode často invertuje hlavne toto */
.card,
.memory,
.song-card,
.song-reveal,
.modern-answer,
.countdown {
    background-color: #ffffff !important;
    color: #2b1d26 !important;
}

body,
p,
h1,
h2,
h3,
button,
span,
div {
    color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
}

* {
    box-sizing: border-box;
}

html,
body {
    background-color: #fff7fb;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;

    background:
            linear-gradient(
                    180deg,
                    #fff7fb 0%,
                    #ffeef6 45%,
                    #fff3f8 100%
            );

    color: #2b1d26;

    overflow-x: hidden;

    -webkit-text-size-adjust: 100%;
}

.background-glow {
    position: fixed;
    inset: 0;

    background:
            radial-gradient(
                    circle at top left,
                    rgba(255, 182, 217, 0.55),
                    transparent 40%
            ),

            radial-gradient(
                    circle at bottom right,
                    rgba(255, 215, 230, 0.55),
                    transparent 40%
            );

    z-index: 0;
    pointer-events: none;
}

.app {
    position: relative;
    z-index: 1;
}

.screen {
    min-height: 100vh;

    display: none;

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

    padding: 24px;
}

.screen.active {
    display: flex;
}

.card {
    width: 100%;
    max-width: 620px;

    padding: 34px;

    border-radius: 30px;

    background: #fff8fb;

    border: 1px solid rgba(255,255,255,0.95);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
            0 20px 60px rgba(255, 182, 217, 0.18),
            0 8px 24px rgba(0,0,0,0.06);

    animation: fadeUp 0.7s ease;
}

.card.wide {
    max-width: 760px;
}

.eyebrow {
    color: #d46a98;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 12px;

    margin-bottom: 12px;

    font-weight: bold;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: #2b1d26;
}

h1 {
    font-size: 42px;
    line-height: 1.15;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
}

h3 {
    line-height: 1.3;
}

p {
    color: #5b4a54;

    line-height: 1.8;

    font-size: 17px;
}

.btn,
.answer {
    border: 0;

    cursor: pointer;

    border-radius: 999px;

    padding: 15px 24px;

    font-size: 16px;

    color: #fff;

    background:
            linear-gradient(
                    135deg,
                    #ff8eb8,
                    #ffb7d1
            );

    margin-top: 18px;

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

.btn:hover,
.answer:hover {
    transform: translateY(-2px);

    box-shadow:
            0 14px 30px rgba(255, 142, 184, 0.32);
}

.timeline {
    margin: 30px 0;

    display: grid;

    gap: 20px;
}

.memory {
    padding: 22px;

    border-radius: 24px;

    background: #ffffff;

    border: 1px solid rgba(255,255,255,0.95);

    box-shadow:
            0 10px 24px rgba(255, 182, 217, 0.12);
}

.memory-date {
    display: inline-block;

    margin-bottom: 10px;

    padding: 7px 14px;

    border-radius: 999px;

    background: #ffe3ef;

    color: #d46a98;

    font-size: 14px;

    font-weight: bold;
}

.memory h3 {
    margin-bottom: 10px;
}

.memory-photo {
    width: 100%;

    max-height: 340px;

    object-fit: cover;

    border-radius: 20px;

    margin-top: 14px;

    cursor: pointer;

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

.memory-photo:hover {
    transform: scale(1.02);

    box-shadow:
            0 16px 40px rgba(255, 182, 217, 0.25);
}

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 999;

    display: none;

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

    padding: 22px;

    background: rgba(30, 10, 20, 0.78);

    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95vw;
    max-height: 88vh;

    border-radius: 24px;

    box-shadow:
            0 30px 90px rgba(0,0,0,0.28);
}

.lightbox-close {
    position: fixed;

    top: 22px;
    right: 24px;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 0;

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

    color: #b04d78;

    font-size: 34px;

    cursor: pointer;
}

.question-wrapper {
    width: 100%;
    max-width: 760px;
}

.question-progress {
    width: 100%;

    height: 10px;

    border-radius: 999px;

    overflow: hidden;

    background: #ffe5f0;

    margin-bottom: 42px;
}

.question-progress-bar {
    width: 33%;

    height: 100%;

    border-radius: 999px;

    background:
            linear-gradient(
                    90deg,
                    #ff8eb8,
                    #ffbfd6
            );

    transition: width 0.4s ease;
}

.question-slide {
    display: none;

    text-align: center;

    animation: fadeUp 0.5s ease;
}

.question-slide.active {
    display: block;
}

.question-step {
    display: inline-block;

    margin-bottom: 18px;

    color: #d46a98;

    font-size: 14px;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-weight: bold;
}

.question-slide h2 {
    font-size: 42px;

    line-height: 1.3;

    margin-bottom: 40px;
}

.question-answers {
    display: grid;
    gap: 16px;
}

.modern-answer {
    width: 100%;

    border: 1px solid rgba(255,255,255,0.95);

    background: #ffffff;

    color: #432b37;

    padding: 24px;

    border-radius: 24px;

    font-size: 18px;

    cursor: pointer;

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

.modern-answer:hover {
    transform: translateY(-3px);

    background: #fff;

    box-shadow:
            0 14px 30px rgba(255, 182, 217, 0.22);
}

.player {
    width: 100%;
    margin-top: 24px;
}

.signature {
    margin-top: 30px;

    color: #d46a98;

    font-size: 18px;

    font-weight: bold;
}

.countdown {
    margin-top: 26px;

    padding: 20px;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid rgba(255,255,255,0.95);

    color: #d46a98;

    font-size: 22px;

    text-align: center;

    font-weight: bold;
}

.song-card {
    width: 100%;
    max-width: 680px;

    padding: 42px 34px;

    border-radius: 34px;

    text-align: center;

    background:
            linear-gradient(
                    180deg,
                    #ffffff,
                    #fff5fa
            );

    border: 1px solid rgba(255,255,255,0.95);

    box-shadow:
            0 24px 70px rgba(255, 142, 184, 0.22),
            0 8px 26px rgba(0,0,0,0.06);

    animation: fadeUp 0.7s ease;
}

.song-heart {
    width: 82px;
    height: 82px;

    margin: 0 auto 22px;

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

    border-radius: 50%;

    background:
            linear-gradient(
                    135deg,
                    #ff8eb8,
                    #ffd1e3
            );

    font-size: 38px;

    box-shadow:
            0 16px 38px rgba(255, 142, 184, 0.32);
}

.song-card h2 {
    font-size: 38px;

    max-width: 560px;

    margin: 0 auto 18px;
}

.song-text {
    max-width: 560px;

    margin: 0 auto 28px;
}

.song-reveal {
    margin-top: 28px;

    padding: 26px;

    border-radius: 26px;

    background: #ffffff;

    border: 1px solid rgba(255,255,255,0.95);
}

.song-reveal p {
    margin-top: 0;
}

.song-card .player {
    margin-top: 18px;
}

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

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

@media (max-width: 700px) {

    .question-slide h2 {
        font-size: 30px;
    }

    .modern-answer {
        padding: 20px;
        font-size: 16px;
    }

}

@media (max-width: 600px) {

    .screen {
        padding: 18px;

        align-items: flex-start;

        padding-top: 38px;
        padding-bottom: 38px;
    }

    .card,
    .song-card {
        padding: 24px;

        border-radius: 24px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 21px;
    }

    p {
        font-size: 16px;
    }

    .memory-photo {
        max-height: 260px;
    }

    .question-slide h2 {
        font-size: 28px;
    }

    .countdown {
        font-size: 18px;
    }

    .song-heart {
        width: 68px;
        height: 68px;

        font-size: 32px;
    }

}