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

:root {
    --primary: #8B0000;
    --primary-light: #A52A2A;
    --primary-dark: #5C0000;
    --white: #FFFFFF;
    --off-white: #FFF8F0;
    --black: #000000;
    --gray-light: #999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

.material-symbols-rounded {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #700000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.loader-wrapper.loaded {
    transform: scale(1.5);
    opacity: 0;
    pointer-events: none;
}

#lottie-container {
    width: 200px;
    height: 200px;
}

.cover-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.flower-decor {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    width: 40%;
    max-width: 250px;
}

.flower-decor.top-right {
    top: -20px;
    right: -20px;
}

.flower-decor.bottom-left {
    bottom: -20px;
    left: -20px;
}

.flower-img {
    width: 100%;
    height: auto;
    animation: heartbeat 3s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.cover-pill {
    background: #700000;
    border-radius: 200px;
    padding: 60px 20px;
    width: 100%;
    max-width: 380px;
    height: 94vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
    animation: zoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; -webkit-transform: scale(0.9); -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); }
    to { transform: scale(1); opacity: 1; }
}

.cover-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 0;
}

.cover-couple-photos {
    margin: 20px 0;
}

.photo-single {
    width: 144px; /* 160 * 0.9 */
    height: 198px; /* 220 * 0.9 */
    border-radius: 100px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cover-names {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.2;
}

.cover-date {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.guest-info {
    margin-bottom: 30px;
}

.cover-to {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 2px;
    opacity: 0.9;
    font-weight: 300;
}

.cover-guest {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 10px;
    font-weight: 300;
}

.guest-line {
    color: #ffffff;
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.cover-guest-name {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
    min-width: 150px;
}

.btn-open {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #700000;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-open span {
    font-size: 18px;
}

.btn-open:hover {
    background: #f0f0f0;
    transform: translateY(-2px) scale(1.05);
}

.btn-open:active {
    transform: translateY(0);
}

.main-content {
    padding-bottom: 70px;
}

.floating-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 5px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border-top: 1px solid rgba(139, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.floating-nav.nav-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: var(--primary);
    color: var(--white);
}

.nav-item:hover {
    background: var(--primary);
    color: var(--white);
}

.scroll-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fade Up (entering from bottom) */
.scroll-animate.fade-up {
    transform: translateY(50px);
}

/* Fade Down (entering from top) */
.scroll-animate.fade-down {
    transform: translateY(-50px);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.section-countdown {
    background: var(--white);
    justify-content: center;
    align-items: center;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}

.flower-countdown-top {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40%;
    max-width: 180px;
    z-index: 1;
    pointer-events: none;
}

.flower-img-countdown {
    width: 100%;
    height: auto;
    animation: heartbeat 3s ease-in-out infinite;
}


.countdown-content {
    text-align: center;
    width: 100%;
    max-width: 360px;
}

.section-label {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.couple-photos-countdown {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.photo-countdown {
    width: 120px;
    height: 160px;
    border-radius: 80px;
    object-fit: cover;
    border: 1px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.couple-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.event-date-main {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--black);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.invitation-text {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.8;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.event-finished {
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.time-box {
    background: var(--primary);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 10px;
    min-width: 65px;
    text-align: center;
}

.time-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.time-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.btn-save-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-save-date:hover {
    background: #f0f0f0;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.section-quran {
    background: #700000;
    padding: 40px 20px;
    justify-content: center;
    align-items: center;
}

.quran-bg {
    text-align: center;
    padding: 30px 20px;
}

.quran-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--white);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 15px;
}

.quran-surah {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--white);
}

.invitation-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.card-salam {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.card-intro {
    font-size: 13px;
    color: var(--black);
    margin-bottom: 25px;
}

.bride-info,
.groom-info {
    margin-bottom: 20px;
}

.bride-photo-wrapper,
.groom-photo-wrapper {
    position: relative;
    display: inline-block;
}

.bride-photo,
.groom-photo {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 60px;
    border: 4px solid var(--primary);
}

.flower-decor-left,
.flower-decor-right {
    position: absolute;
    width: 40px;
    height: 40px;
}

.flower-decor-left {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.flower-decor-right {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.flower-svg-small {
    width: 100%;
    height: 100%;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bride-name,
.groom-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
    margin-bottom: 5px;
}

.bride-parents,
.groom-parents {
    font-size: 12px;
    color: var(--black);
}

.bride-address,
.groom-address {
    font-size: 11px;
    color: #000000;
    margin-top: 5px;
}

.and-text {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: var(--primary);
    margin: 15px 0;
}

.section-event {
    background: var(--white);
    padding: 40px 20px;
    justify-content: center;
    align-items: center;
}

.event-pill-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.event-pill {
    position: relative;
    background: #700000;
    border-radius: 200px;
    padding: 100px 30px 140px; /* Increased height by 10% */
    width: 100%;
    max-width: 380px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.event-flower-decor {
    position: absolute;
    top: -40px;
    left: 20px;
    width: 190px; /* Sesuaikan ukuran bunga */
    z-index: 10;
    transform-origin: center;
    animation: flowerBeat 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes flowerBeat {
    0%, 100% { transform: rotate(-60deg) scale(1); }
    50% { transform: rotate(-60deg) scale(1.1); }
}

.event-item {
    text-align: center;
    width: 100%;

}

.event-icon-rings {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
}

.rings-svg {
    width: 100%;
    height: 100%;
}

.event-title-new {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-month-new {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 300;
}

.event-date-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
}

.event-side {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 300;
}

.event-day-counter {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.event-time-new {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}

.event-divider-new {
    width: 40px;
    height: 1px;
    background: white;
    margin: 0 auto 20px;
}

.event-location-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-location-address {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.6;
}

.event-spacer {
    height: 60px;
    width: 100%;
}

.btn-maps-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #700000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 40px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-gallery {
    background: var(--off-white);
    padding: 40px 15px;
    min-height: auto;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 25px;
}

.section-heading-light {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.section-story {
    background: var(--white);
    padding: 40px 20px;
    min-height: auto;
}

.timeline {
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.timeline-content {
    background: #700000;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-date {
    font-size: 11px;
    color: var(--white);
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 1px;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    margin: 5px 0;
}

.timeline-text {
    font-size: 13px;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.section-gift {
    background: var(--primary);
    padding: 40px 20px;
    min-height: auto;
    text-align: center;
}

.gift-text {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.gift-btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px !important;
}

.qr-code-wrapper {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.qr-img {
    width: 150px;
    height: 150px;
    display: block;
}

.btn-rekening {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-rekening:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.rekening-info {
    margin-top: 20px;
}

.rekening-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.bank-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.rekening-number {
    font-family: 'Poppins', monospace;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.atas-nama {
    font-size: 12px;
    color: var(--black);
    margin-bottom: 15px;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: var(--primary-light);
}

.section-rsvp {
    background: var(--off-white);
    padding: 40px 20px;
    min-height: auto;
}

.rsvp-text {
    font-size: 14px;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}

.rsvp-form,
.wishes-form {
    max-width: 350px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-light);
}

.rsvp-status {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.section-wishes {
    background: var(--white);
    padding: 40px 20px;
    min-height: auto;
}

.wishes-text {
    font-size: 14px;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}

.wishes-list {
    max-width: 350px;
    margin: 25px auto 0;
}

.wish-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    border-left: 3px solid var(--primary);
}

.wish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.wish-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.wish-status {
    font-size: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
}

.wish-text {
    font-size: 13px;
    color: var(--black);
    line-height: 1.6;
}

/* Music Control Button */
.music-control-btn {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    animation: pulseMusic 2s infinite;
}

.music-control-btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.music-control-btn.scrolling {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

@keyframes pulseMusic {
    0% { box-shadow: 0 0 0 0 rgba(112, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(112, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(112, 0, 0, 0); }
}

.section-closing {
    position: relative;
    background: var(--off-white);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.closing-flower-top {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 180px;
    z-index: 1;
    opacity: 0.9;
    animation: flowerBeatClosing 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes flowerBeatClosing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.closing-content {
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.closing-photo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.closing-photo {
    width: 200px;
    height: 250px;
    border-radius: 100px;
    object-fit: cover;
    border: 3px solid rgba(112, 0, 0, 0.3);
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.closing-title {
    font-family: 'Great Vibes', cursive;
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 25px;
}

.closing-text {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 30px;
    line-height: 1.8;
    padding: 0 20px;
}

.closing-salam {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
}

.closing-thank-you {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 10px;
}

.closing-names {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: var(--primary);
}

.footer {
    background: var(--primary);
    padding: 20px;
    text-align: center;
}

.footer p {
    font-size: 12px;
    color: var(--white);
    opacity: 0.8;
}

.footer-credit {
    font-family: 'Great Vibes', cursive;
    font-size: 16px;
    color: var(--white);
    margin-top: 5px;
}

@media (max-width: 360px) {
    .cover-ellipse {
        width: 250px;
        height: 300px;
        padding: 30px 20px 20px;
    }

    .cover-names {
        font-size: 26px;
    }

    .time-box {
        padding: 10px 12px;
        min-width: 55px;
    }

    .time-number {
        font-size: 20px;
    }

    .date-day {
        font-size: 40px;
    }
}

@media (min-width: 768px) {
    .floating-nav {
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50px 50px 0 0;
    }
}