@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500&display=swap');

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: #090608;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}


/* =========================
   EXPERIENCE
========================= */

.experience {
    width: 100%;
    height: 100vh;
    position: relative;
}


/* =========================
   INTRO SCREEN
========================= */

.intro-screen {
    position: absolute;
    inset: 0;

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

    background:
        radial-gradient(
            circle at center,
            #24121c 0%,
            #11090e 45%,
            #090608 100%
        );

    transition:
        opacity 1s ease,
        visibility 1s ease;

    z-index: 10;
}

.intro-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.intro-content {
    text-align: center;
    position: relative;
    z-index: 2;

    animation: fadeUp 1.5s ease forwards;
}


.small-text {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
}


.intro-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 10vw, 110px);
    font-weight: 500;
    line-height: 0.9;
    margin-bottom: 28px;
}


.intro-content h1 span {
    font-size: 0.55em;
}


.intro-message {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}


/* =========================
   BUTTON
========================= */

.open-button {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    color: white;

    padding: 15px 27px;

    border-radius: 100px;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.open-button span {
    margin-left: 10px;
}

.open-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}


/* =========================
   STARS
========================= */

.stars,
.stars::before,
.stars::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.stars::before {
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);

    background-size: 130px 130px, 190px 190px;
    background-position: 20px 30px, 80px 100px;

    opacity: 0.3;
}

.stars::after {
    background:
        radial-gradient(
            circle,
            rgba(255, 120, 160, 0.12),
            transparent 55%
        );
}


/* =========================
   LETTER SCREEN
========================= */

.letter-screen {
    position: absolute;
    inset: 0;

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

    background:
        radial-gradient(
            circle at center,
            #29131d,
            #0c070a 65%
        );

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.letter-screen.active {
    opacity: 1;
    visibility: visible;
}


.letter-content {
    text-align: center;
}


/* =========================
   ENVELOPE
========================= */

.envelope {
    width: min(330px, 80vw);
    height: 220px;

    position: relative;

    margin: 25px auto 30px;

    cursor: pointer;

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

    transition:
        transform 0.5s ease;
}

.envelope:hover {
    transform: translateY(-8px);
}


.envelope-back {
    position: absolute;
    inset: 0;

    background: #9d526d;

    border-radius: 8px;

    overflow: hidden;
}


.envelope-front {
    position: absolute;
    inset: 0;

    background: #7d3d56;

    clip-path: polygon(
        0 0,
        50% 58%,
        100% 0,
        100% 100%,
        0 100%
    );

    border-radius: 8px;
}


.envelope-flap {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 130px;

    background: #b5657e;

    clip-path: polygon(
        0 0,
        100% 0,
        50% 100%
    );

    transform-origin: top;

    transition: transform 0.9s cubic-bezier(.2,.8,.2,1);

    z-index: 4;
}


.letter-paper {
    position: absolute;

    width: 86%;
    height: 180px;

    left: 7%;
    bottom: 15px;

    background: #fffaf4;

    border-radius: 4px;

    z-index: 2;

    transition:
        transform 1s cubic-bezier(.2,.8,.2,1);
}


.letter-paper::before {
    content: "For you ❤️";

    position: absolute;

    top: 35px;
    left: 0;
    right: 0;

    color: #5b3743;

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;
}


.heart-seal {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -20%);

    width: 48px;
    height: 48px;

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

    background: #fffaf4;

    border-radius: 50%;

    font-size: 20px;

    z-index: 5;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.25);

    transition: opacity 0.4s ease;
}


.envelope.open .envelope-flap {
    transform: rotateX(180deg);
}

.envelope.open .letter-paper {
    transform: translateY(-115px);
}

.envelope.open .heart-seal {
    opacity: 0;
}


/* =========================
   TAP MESSAGE
========================= */

.tap-message {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;

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

    transition: opacity 0.5s ease;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {

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

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

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .intro-content {
        padding: 25px;
    }

    .intro-content h1 {
        font-size: 64px;
    }

    .intro-message {
        font-size: 14px;
    }

    .envelope {
        height: 200px;
    }

}

/* =========================
   FULL LETTER
========================= */

.full-letter {
    position: fixed;
    inset: 0;

    z-index: 50;

    display: block;

    padding: 40px 20px 80px;

    background:
        radial-gradient(
            circle at center,
            #2a151e 0%,
            #10090d 65%,
            #080507 100%
        );

    opacity: 0;
    visibility: hidden;

    transform: scale(0.96);

    transition:
        opacity 1s ease,
        visibility 1s ease,
        transform 1s ease;

    overflow-y: auto;
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;
}

.full-letter.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


/* PAPER */

.letter-wrapper {
    width: min(680px, 92vw);

    min-height: 650px;

    padding: 70px 65px;

    background:
        linear-gradient(
            135deg,
            #fffaf3,
            #f7eee3
        );

    color: #3f2930;

    box-shadow:
        0 40px 100px rgba(0,0,0,0.55);

    position: relative;
    margin: 0 auto;

    transform: translateY(40px);

    transition:
        transform 1s ease;
}

.full-letter.active .letter-wrapper {
    transform: translateY(0);
}


/* PAPER TEXTURE */

.letter-wrapper::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0.25;

    background-image:
        radial-gradient(
            rgba(90, 60, 50, 0.15) 1px,
            transparent 1px
        );

    background-size: 5px 5px;
}


/* LETTER LABEL */

.letter-label {
    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 4px;

    color: #9a6b78;

    margin-bottom: 35px;
}


/* TITLE */

.letter-wrapper h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 50px;

    font-weight: 500;

    margin-bottom: 30px;
}


/* LETTER */

.letter-text {
    font-family: "Cormorant Garamond", serif;

    font-size: 22px;

    line-height: 1.7;
}

.letter-text p {
    margin-bottom: 22px;
}


/* SIGNATURE */

.signature {
    margin-top: 40px;

    font-size: 24px;
}

.signature span {
    font-size: 20px;
}


/* CONTINUE */

.continue-button {
    margin-top: 20px;

    border: none;

    background: transparent;

    color: #7d3d56;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.3s ease;
}

.continue-button span {
    margin-left: 8px;
}

.continue-button:hover {
    transform: translateY(4px);
}


/* MOBILE */

@media (max-width: 600px) {

    .full-letter {
        padding: 24px 12px 60px;
    }

    .letter-wrapper {
        padding: 45px 28px;
        min-height: auto;
    }

    .letter-wrapper h2 {
        font-size: 42px;
    }

    .letter-text {
        font-size: 19px;
        line-height: 1.65;
    }

}

/* =========================
   DISCOVER SCREEN
========================= */

.discover-screen {
    position: fixed;
    inset: 0;

    z-index: 40;

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

    padding: 30px 20px;

    background:
        radial-gradient(
            circle at center,
            #24121c 0%,
            #0d070b 70%
        );

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 0.8s ease;

    overflow-y: auto;
}

.discover-screen.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.discover-content {
    width: min(850px, 92vw);
    text-align: center;
}


.discover-content h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 7vw, 80px);

    font-weight: 500;

    margin-bottom: 15px;
}


.discover-subtitle {
    font-size: 14px;

    font-weight: 300;

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

    margin-bottom: 55px;
}


/* =========================
   GIFT GRID
========================= */

.gift-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    max-width: 700px;

    margin: auto;
}


.gift-card {
    position: relative;

    min-height: 190px;

    padding: 30px;

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

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.025)
        );

    color: white;

    text-align: left;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}


.gift-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255,255,255,0.3);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.11),
            rgba(255,255,255,0.04)
        );
}


.gift-icon {
    font-size: 30px;
}


.gift-title {
    font-family: "Cormorant Garamond", serif;

    font-size: 29px;
}


.gift-arrow {
    position: absolute;

    right: 25px;
    bottom: 25px;

    font-size: 18px;

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

    transition: transform 0.3s ease;
}


.gift-card:hover .gift-arrow {
    transform: translateX(6px);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .gift-grid {
        grid-template-columns: 1fr;
    }

    .gift-card {
        min-height: 145px;
    }

    .discover-subtitle {
        margin-bottom: 35px;
    }

}

/* =========================
   MEMORIES SCREEN
========================= */

.memories-screen {
    position: fixed;
    inset: 0;

    z-index: 60;

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

    padding: 30px 20px;

    background:
        radial-gradient(
            circle at center,
            #24121c,
            #090608 70%
        );

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.memories-screen.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   HEADER
========================= */

.memories-header {
    text-align: center;

    margin-bottom: 35px;
}

.memories-header h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 7vw, 80px);

    font-weight: 500;

    margin-bottom: 8px;
}

.memories-header p:last-child {
    color: rgba(255,255,255,0.5);

    font-size: 13px;

    font-weight: 300;
}


/* =========================
   VIEWER
========================= */

.memory-viewer {
    display: flex;

    align-items: center;

    gap: 30px;

    width: min(850px, 95vw);
}


.memory-card {
    width: 100%;

    max-width: 650px;

    margin: auto;

    border-radius: 18px;

    overflow: hidden;

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

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

    box-shadow:
        0 35px 80px rgba(0,0,0,0.5);
}


/* =========================
   IMAGE
========================= */

.memory-image {
    width: 100%;

    height: 430px;

    overflow: hidden;

    background: #151015;
}

.memory-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        opacity 0.5s ease,
        transform 0.8s ease;
}


/* =========================
   MEMORY INFO
========================= */

.memory-info {
    padding: 25px 30px 30px;
}

.memory-info span {
    font-size: 10px;

    letter-spacing: 3px;

    color: rgba(255,255,255,0.4);
}

.memory-info h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 32px;

    font-weight: 500;

    margin: 10px 0 5px;
}

.memory-info p {
    color: rgba(255,255,255,0.55);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================
   NAVIGATION
========================= */

.memory-nav {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

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

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

    color: white;

    cursor: pointer;

    font-size: 18px;

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

.memory-nav:hover {
    transform: scale(1.08);

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


/* =========================
   BACK BUTTON
========================= */

.back-button {
    margin-top: 28px;

    background: none;

    border: none;

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

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease;
}

.back-button:hover {
    color: white;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .memories-screen {
        overflow-y: auto;

        justify-content: flex-start;

        padding-top: 55px;
    }

    .memory-viewer {
        gap: 8px;
    }

    .memory-image {
        height: 330px;
    }

    .memory-info {
        padding: 20px;
    }

    .memory-info h3 {
        font-size: 28px;
    }

    .memory-nav {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

}

/* =========================
   OPEN WHEN
========================= */

.open-when-screen {
    position: fixed;
    inset: 0;

    z-index: 65;

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

    padding: 30px 20px;

    background:
        radial-gradient(
            circle at center,
            #24121c,
            #090608 70%
        );

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.open-when-screen.active {
    opacity: 1;
    visibility: visible;
}


/* HEADER */

.open-when-header {
    text-align: center;

    margin-bottom: 40px;
}

.open-when-header h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 7vw, 80px);

    font-weight: 500;

    margin-bottom: 8px;
}

.open-when-header p:last-child {
    color: rgba(255,255,255,0.5);

    font-size: 13px;

    font-weight: 300;
}


/* GRID */

.when-grid {
    width: min(800px, 94vw);

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}


/* CARDS */

.when-card {
    min-height: 190px;

    padding: 30px;

    text-align: left;

    border-radius: 16px;

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.025)
        );

    color: white;

    cursor: pointer;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.when-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(255,255,255,0.3);
}


.when-icon {
    display: block;

    font-size: 28px;

    margin-bottom: 25px;
}


.when-card h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    font-weight: 500;

    margin-bottom: 5px;
}


.when-card p {
    font-size: 12px;

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

    line-height: 1.5;
}


/* =========================
   LETTER MODAL
========================= */

.when-letter-screen {
    position: fixed;
    inset: 0;

    z-index: 100;

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

    padding: 25px;

    background:
        rgba(5,3,5,0.85);

    backdrop-filter: blur(15px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.when-letter-screen.active {
    opacity: 1;
    visibility: visible;
}


.when-letter {
    width: min(620px, 94vw);

    max-height: 85vh;

    overflow-y: auto;

    padding: 60px 55px;

    position: relative;

    background:
        linear-gradient(
            135deg,
            #fffaf3,
            #f5e9dc
        );

    color: #3f2930;

    box-shadow:
        0 40px 100px rgba(0,0,0,0.6);

    transform:
        translateY(30px)
        scale(0.96);

    transition:
        transform 0.6s ease;
}

.when-letter-screen.active .when-letter {
    transform:
        translateY(0)
        scale(1);
}


/* CLOSE */

.close-letter {
    position: absolute;

    top: 18px;
    right: 22px;

    width: 35px;
    height: 35px;

    border: none;

    background: transparent;

    color: #6b4b55;

    font-size: 28px;

    cursor: pointer;
}


/* ICON */

.when-letter-icon {
    display: block;

    font-size: 35px;

    margin-bottom: 20px;
}


.when-letter h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 45px;

    font-weight: 500;

    margin-bottom: 30px;
}


.when-letter-text {
    font-family: "Cormorant Garamond", serif;

    font-size: 21px;

    line-height: 1.7;
}

.when-letter-text p {
    margin-bottom: 20px;
}


.when-letter-text .signature {
    margin-top: 35px;
}


/* MOBILE */

@media (max-width: 600px) {

    .open-when-screen {
        justify-content: flex-start;

        overflow-y: auto;

        padding-top: 55px;
    }

    .when-grid {
        grid-template-columns: 1fr;
    }

    .when-card {
        min-height: 150px;
    }

    .when-letter {
        padding: 50px 28px;
    }

    .when-letter h2 {
        font-size: 38px;
    }

    .when-letter-text {
        font-size: 19px;
    }

}

/* =========================
   OUR SONG
========================= */

.song-screen {
    position: fixed;
    inset: 0;

    z-index: 70;

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

    overflow: hidden;

    background: #090608;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.song-screen.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   BACKGROUND
========================= */

.song-background {
    position: absolute;
    inset: -50px;

    background:
        linear-gradient(
            rgba(10,5,8,0.78),
            rgba(10,5,8,0.95)
        ),
        url("images/memory1.jpg");

    background-size: cover;
    background-position: center;

    filter: blur(25px);

    transform: scale(1.1);

    opacity: 0.7;
}


/* =========================
   CONTENT
========================= */

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

    width: min(420px, 90vw);

    text-align: center;
}


/* BACK */

.song-back {
    position: absolute;

    top: -50px;
    left: 0;

    border: none;

    background: transparent;

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

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition: color 0.3s ease;
}

.song-back:hover {
    color: white;
}


/* =========================
   ALBUM ART
========================= */

.album-art {
    position: relative;

    width: 270px;
    height: 270px;

    margin: 30px auto;

    border-radius: 50%;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.6);

    animation:
        albumFloat 5s ease-in-out infinite;
}


.album-art img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid rgba(255,255,255,0.08);
}


/* ROTATING RING */

.vinyl-ring {
    position: absolute;

    inset: -12px;

    border-radius: 50%;

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

    border-top-color: rgba(255,255,255,0.6);

    animation:
        rotateVinyl 8s linear infinite;

    animation-play-state: paused;
}


.song-screen.playing .vinyl-ring {
    animation-play-state: running;
}


@keyframes rotateVinyl {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes albumFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================
   SONG INFO
========================= */

.song-label {
    font-size: 9px;

    letter-spacing: 4px;

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

    margin-bottom: 10px;
}


.song-content h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 42px;

    font-weight: 500;

    margin-bottom: 5px;
}


.song-subtitle {
    font-size: 12px;

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

    line-height: 1.5;
}


/* =========================
   PROGRESS
========================= */

.song-progress {
    margin-top: 30px;
}


.progress-bar {
    width: 100%;
    height: 3px;

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

    border-radius: 10px;

    overflow: hidden;

    cursor: pointer;
}


.progress-fill {
    width: 0%;

    height: 100%;

    background: white;

    transition: width 0.1s linear;
}


.song-times {
    display: flex;

    justify-content: space-between;

    margin-top: 7px;

    font-size: 9px;

    color: rgba(255,255,255,0.4);
}


/* =========================
   CONTROLS
========================= */

.song-controls {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 25px;

    margin-top: 25px;
}


.control-button,
.play-button {
    border: none;

    color: white;

    cursor: pointer;

    background: transparent;
}


.control-button {
    font-size: 18px;

    opacity: 0.6;
}


.play-button {
    width: 58px;
    height: 58px;

    border-radius: 50%;

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

    color: #24121c;

    font-size: 17px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition:
        transform 0.3s ease;
}


.play-button:hover {
    transform: scale(1.08);
}


/* =========================
   MESSAGE
========================= */

.song-message {
    margin-top: 20px;

    font-size: 10px;

    letter-spacing: 2px;

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

    text-transform: uppercase;
}


/* MOBILE */

@media (max-width: 600px) {

    .album-art {
        width: 220px;
        height: 220px;
    }

    .song-content h2 {
        font-size: 36px;
    }

}

/* =========================
   SECRET SCREEN
========================= */

.secret-screen {
    position: fixed;
    inset: 0;

    z-index: 80;

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

    background:
        radial-gradient(
            circle at center,
            #24121c,
            #090608 70%
        );

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.secret-screen.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   SECRET CONTENT
========================= */

.secret-content {
    width: min(500px, 90vw);

    text-align: center;

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


.lock-icon {
    font-size: 55px;

    margin-bottom: 25px;

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


@keyframes lockFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


.secret-content h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 7vw, 70px);

    font-weight: 500;

    margin-bottom: 12px;
}


.secret-description {
    color: rgba(255,255,255,0.5);

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 35px;
}


/* =========================
   INPUT
========================= */

.secret-input-area {
    display: flex;

    width: 100%;

    max-width: 400px;

    margin: auto;

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

    border-radius: 100px;

    padding: 5px;

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


.secret-input-area input {
    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    background: transparent;

    color: white;

    padding: 13px 18px;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;
}


.secret-input-area input::placeholder {
    color: rgba(255,255,255,0.3);
}


.secret-input-area button {
    border: none;

    border-radius: 100px;

    padding: 12px 20px;

    background: white;

    color: #24121c;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    cursor: pointer;

    transition:
        transform 0.3s ease;
}

.secret-input-area button:hover {
    transform: scale(1.04);
}


/* =========================
   ERROR
========================= */

.secret-error {
    min-height: 25px;

    margin-top: 15px;

    font-size: 11px;

    color: #d98a9f;
}


/* =========================
   BACK
========================= */

.secret-back {
    position: absolute;

    top: 35px;
    left: 35px;

    border: none;

    background: transparent;

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

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;
}


/* =========================
   REVEAL
========================= */

.secret-reveal {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    padding: 30px;

    text-align: center;

    opacity: 0;

    visibility: hidden;

    transform: scale(0.95);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 0.8s ease;
}

.secret-reveal.active {
    opacity: 1;

    visibility: visible;

    transform: scale(1);
}


.secret-content.hidden {
    opacity: 0;

    transform: scale(0.95);

    pointer-events: none;
}


.reveal-heart {
    font-size: 65px;

    margin-bottom: 25px;

    animation:
        heartPulse 1.5s ease-in-out infinite;
}


@keyframes heartPulse {

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

    50% {
        transform: scale(1.12);
    }

}


.secret-reveal h2 {
    max-width: 700px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(45px, 7vw, 75px);

    font-weight: 500;

    margin: 15px 0 25px;
}


.reveal-message {
    max-width: 500px;

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

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 35px;
}


.final-button {
    border: 1px solid rgba(255,255,255,0.25);

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

    color: white;

    padding: 14px 25px;

    border-radius: 100px;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    letter-spacing: 2px;

    cursor: pointer;

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


.final-button:hover {
    background: rgba(255,255,255,0.1);

    transform: translateY(-3px);
}


/* MOBILE */

@media (max-width: 600px) {

    .secret-back {
        top: 20px;
        left: 20px;
    }

    .secret-input-area {
        max-width: 95%;
    }

}

/* =========================
   FINAL SCREEN
========================= */

.final-screen {
    position: fixed;
    inset: 0;

    z-index: 200;

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

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #351521 0%,
            #12090e 45%,
            #050304 100%
        );

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1.5s ease,
        visibility 1.5s ease;
}

.final-screen.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   STARS
========================= */

.final-stars,
.final-stars::before,
.final-stars::after {
    position: absolute;

    inset: 0;

    pointer-events: none;

    content: "";
}

.final-stars::before {
    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,0.8) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle,
            rgba(255,255,255,0.4) 1px,
            transparent 1px
        );

    background-size:
        120px 120px,
        200px 200px;

    background-position:
        20px 40px,
        100px 120px;

    opacity: 0.35;

    animation:
        starsMove 15s linear infinite;
}

.final-stars::after {
    background:
        radial-gradient(
            circle at center,
            rgba(255,100,150,0.15),
            transparent 50%
        );
}


@keyframes starsMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100px);
    }

}


/* =========================
   CONTENT
========================= */

.final-content {
    position: relative;

    z-index: 2;

    width: min(700px, 90vw);

    text-align: center;

    animation:
        finalReveal 2s ease forwards;
}


@keyframes finalReveal {

    from {
        opacity: 0;

        transform:
            translateY(30px)
            scale(0.96);
    }

    to {
        opacity: 1;

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

}


/* =========================
   TOP TEXT
========================= */

.final-small {
    font-size: 10px;

    letter-spacing: 5px;

    text-transform: uppercase;

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

    margin-bottom: 25px;
}


/* =========================
   HEART
========================= */

.final-heart {
    font-size: 55px;

    margin-bottom: 20px;

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


@keyframes finalHeart {

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

    50% {
        transform: scale(1.12);
    }

}


/* =========================
   TITLE
========================= */

.final-content h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(
        70px,
        12vw,
        125px
    );

    font-weight: 500;

    line-height: 0.9;

    margin-bottom: 35px;
}


/* =========================
   LINE
========================= */

.final-line {
    width: 60px;

    height: 1px;

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

    margin: 0 auto 35px;
}


/* =========================
   FINAL MESSAGE
========================= */

.final-message {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(
        25px,
        4vw,
        38px
    );

    line-height: 1.45;

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

    margin-bottom: 35px;
}


/* =========================
   NOTE
========================= */

.final-note {
    max-width: 520px;

    margin: 0 auto 30px;

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

    font-size: 13px;

    line-height: 1.8;

    font-weight: 300;
}


/* =========================
   SIGNATURE
========================= */

.forever {
    font-family: "Cormorant Garamond", serif;

    font-size: 23px;

    color:
        rgba(255,255,255,0.8);
}


/* MOBILE */

@media (max-width: 600px) {

    .final-content h1 {
        font-size: 70px;
    }

    .final-message {
        font-size: 27px;
    }

    .final-note {
        font-size: 12px;

        padding: 0 10px;
    }

}