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

    background:
        linear-gradient(
            135deg,
            #fff0f5,
            #fdeff9,
            #fffafc
        );
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

    border-radius: 40px;
    padding: 60px 50px;

    text-align: center;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.12);

    overflow: hidden;
}

.hero-image {
    margin-bottom: 20px;
}

.hero-image img {
    width: 260px;
    height: 260px;

    object-fit: cover;

    border-radius: 50%;

    border: 8px solid #ffd6e7;

    box-shadow:
        0 10px 30px rgba(255, 130, 170, 0.25);
}

.small-title {
    color: #ff79aa;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: bold;
}

h1 {
    margin-top: 10px;
    margin-bottom: 10px;

    font-size: 52px;
    color: #444;
}

h2 {
    color: #888;
    font-weight: normal;
    margin-bottom: 30px;
}

.message {
    max-width: 650px;
    margin: auto;

    font-size: 21px;
    line-height: 1.9;
    color: #555;
}

/* COUNTDOWN */

.countdown-box {
    margin-top: 35px;
    padding: 28px;

    background: #fff5fa;
    border-radius: 28px;

    box-shadow:
        0 8px 20px rgba(255, 140, 180, 0.12);
}

.countdown-box p {
    margin: 0 0 12px;

    color: #ff79aa;
    font-weight: bold;
    letter-spacing: 1px;
}

#countdown {
    font-size: 28px;
    font-weight: bold;
    color: #555;
    line-height: 1.6;
}

/* GALLERY */

.gallery {
    margin-top: 45px;

    display: flex;
    justify-content: center;
    gap: 25px;

    flex-wrap: wrap;
}

.gallery img {
    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    border: 6px solid #ffe0ec;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.08);

    transition: transform 0.25s ease;
}

.gallery img:hover {
    transform: scale(1.04);
}

/* INFO */

.info {
    margin-top: 45px;

    font-size: 20px;
    line-height: 2;

    color: #555;
}

/* MUSIC */

.music-box {
    margin-top: 40px;
}

.music-box button {
    border: none;
    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            #ff8fbc,
            #ff73aa
        );

    color: white;

    padding: 18px 32px;
    border-radius: 999px;

    font-size: 18px;
    font-weight: bold;

    box-shadow:
        0 8px 25px rgba(255,121,170,0.25);

    transition: all 0.25s ease;
}

.music-box button:hover {
    transform:
        translateY(-3px)
        scale(1.03);
}

.music-box button:active {
    transform: scale(0.98);
}

.music-note {
    margin-top: 12px;
    font-size: 14px;
    color: #999;
}

/* BUTTONS */

.buttons {
    margin-top: 40px;

    display: flex;
    justify-content: center;
    gap: 16px;

    flex-wrap: wrap;
}

.buttons a {
    background: #ff79aa;
    color: white;

    padding: 18px 30px;
    border-radius: 999px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.25s ease;
}

.buttons a:hover {
    transform: translateY(-3px);
}

/* FOOTER */

.footer-text {
    margin-top: 45px;
    color: #999;
    font-size: 18px;
}

.share-box {
    margin-top: 20px;
}

.share-box button {
    background: white;
    color: #ff79aa;

    border: 2px solid #ff79aa;

    padding: 16px 28px;
    border-radius: 999px;

    cursor: pointer;

    font-size: 16px;
    font-weight: bold;

    transition: 0.2s ease;
}

.share-box button:hover {
    background: #ff79aa;
    color: white;
}

/* MOBILE */

@media (max-width: 768px) {

    body {
        padding: 16px;
    }

    .card {
        padding: 40px 25px;
        border-radius: 30px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 22px;
    }

    .message {
        font-size: 18px;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }

    .gallery {
        gap: 14px;
    }

    .gallery img {
        width: 120px;
        height: 120px;
    }

    .info {
        font-size: 18px;
    }

    #countdown {
        font-size: 22px;
    }

    .music-box button {
        width: 100%;
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
    }

    .buttons a {
        width: 100%;
        box-sizing: border-box;
    }
}