* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #2C2C2C;
    background: linear-gradient(to bottom, #F5F3F0 0%, #F0EDE8 100%);
    background-attachment: fixed;
    line-height: 1.6;
    font-weight: 300;
    padding: 0;
    margin: 0;
}

/* Typography */
.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #3D2F2F;
}

.couple-names {
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1.5rem;
    color: #2C1F1F;
    line-height: 1.1;
    letter-spacing: 0.02em;
    animation: coupleFadeIn 1.2s ease-out 0.2s both;
}

.invitation-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 1.2rem;
    color: #3D2F2F;
    line-height: 1.3;
}

.invitation-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.2rem;
}

.invitation-separator .dot {
    width: 4px;
    height: 4px;
    background-color: #8B6F47;
    border-radius: 50%;
    opacity: 0.7;
}

.tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
    color: #6B5D5D;
    font-weight: 300;
    letter-spacing: 0.01em;
    font-style: italic;
}

.greeting {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #3D2F2F;
}

/* Hero Video Section - First Section */
.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(245, 243, 240, 0.3) 0%,
        rgba(245, 243, 240, 0.4) 50%,
        rgba(245, 243, 240, 0.6) 100%
    );
    z-index: 1;
}

/* Landing/Loader Page */
.landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1A1515 0%, #2C1F1F 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease-out;
    overflow: hidden;
}

/* Prevent scroll when landing is active */
.no-scroll {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.landing-page.fade-out {
    opacity: 0;
    pointer-events: none;
}

.landing-content {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-frame-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
}

.landing-frame-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    z-index: 1;
}

.landing-text-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    opacity: 1;
    transform: translateY(0);
}

.landing-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #2C1F1F;
    margin: 0 0 1rem;
}

.landing-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #3D2F2F;
    margin: 0 0 2.5rem;
    line-height: 1.6;
}

.discover-btn {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(135deg, #5C4A3A 0%, #4A3A2A 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: inline-block;
    min-width: 200px;
}

.discover-btn:hover {
    background: linear-gradient(135deg, #4A3A2A 0%, #5C4A3A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.discover-btn:active {
    transform: translateY(0);
}

@keyframes landingFrameFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes landingImageFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes coupleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}



/* Mobile Header (Top) */
.hero-mobile-header {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1rem 1rem;
    text-align: center;
    display: none;
}

.couple-names-mobile {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C1F1F;
    margin: 0 0 0.5rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    animation: coupleFadeIn 1.1s ease-out 0.15s both;
}

.wedding-date-mobile {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #6B5D5D;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

/* Confirm Attendance Footer (Bottom) - Visible on all devices */
.hero-mobile-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    padding: 1rem;
    text-align: center;
    display: block;
}

.confirm-attendance-mobile {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6B5D5D;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.scroll-indicator {
    font-size: 1rem;
    color: #8B6F47;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@media (prefers-reduced-motion: reduce) {
    .couple-names,
    .couple-names-mobile {
        animation: none;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 440px;
    width: calc(100% - 4rem);
    padding: 2rem;
    text-align: center;
    box-sizing: border-box;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.header-left,
.header-right {
    display: flex;
    flex-direction: column;
}

.header-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2C1F1F;
    margin-bottom: 0.35rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.header-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #8B6F47;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-style: italic;
}

.card-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #D4C4B0 20%, #D4C4B0 80%, transparent 100%);
    margin: 1.2rem 0 2.5rem;
    position: relative;
}

.card-separator::before,
.card-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #8B6F47;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.card-separator::before {
    left: 20%;
}

.card-separator::after {
    right: 20%;
}

.card-text-content {
    text-align: center;
    padding-bottom: 0.5rem;
}


/* Countdown Timer Section */
.countdown-section {
    max-width: 440px;
    width: 100%;
    margin: 4rem auto 3rem;
    padding: 0 1rem;
    text-align: center;
}

@media (max-width: 480px) {
    .countdown-section {
        margin: 2rem auto 2rem;
        padding: 0 1rem;
    }
}

.countdown-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #6B5D5D;
    margin-bottom: 2rem;
    font-weight: 400;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #3D2F2F;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.countdown-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: #6B5D5D;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-separator {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B6F47;
    opacity: 0.6;
    line-height: 1;
    margin-top: -1rem;
}

/* Welcome Section */
.welcome-section {
    max-width: 440px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 1rem 4rem;
    text-align: center;
    position: relative;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3D2F2F;
    margin-bottom: 1.5rem;
}

.dove-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 0.85;
    pointer-events: none;
    overflow: hidden;
}

.dove-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
    mask-image: radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
}

/* Timeline Section */
.timeline-section {
    max-width: 440px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 1rem;
}

.date-box {
    background: linear-gradient(135deg, #D4C4B0 0%, #C4B5A0 100%);
    padding: 0.6rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #3D2F2F;
    border-radius: 20px;
    margin: 0 auto -12px;
    max-width: 140px;
    position: relative;
    z-index: 1;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-box {
    border: 1px solid #C4B5A0;
    border-radius: 10px;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to bottom, #F8F6F2 0%, #F5F1E8 100%);
    position: relative;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

.timeline-item {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-event-line {
    font-family: 'Lato', sans-serif;
    color: #2C2C2C;
    font-size: 0.95rem;
}

.time {
    font-weight: 400;
    color: #2C2C2C;
}

.event {
    font-weight: 400;
    color: #2C2C2C;
}

.address {
    font-size: 0.85rem;
    color: #2C2C2C;
    display: block;
    margin-top: 0.3rem;
    padding-left: 1rem;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}

.timeline-bottom-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
}

.timeline-bottom-decoration .dot {
    width: 4px;
    height: 4px;
    background-color: #8B6F47;
    border-radius: 50%;
    opacity: 0.8;
}

.timeline-bottom-decoration .line {
    width: 20px;
    height: 1px;
    background-color: #8B6F47;
    opacity: 0.6;
}

/* Image Section */
.image-section {
    max-width: 440px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 1rem;
}

.image-section .couple-img {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* RSVP Section */
.rsvp-section {
    max-width: 440px;
    width: 100%;
    margin: 3rem auto;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #F8F6F2 0%, #F5F1E8 100%);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rsvp-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #6B5D5D;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.rsvp-form {
    border: 1px solid #C4B5A0;
    border-radius: 10px;
    padding: 2.5rem;
    background-color: #FFFFFF;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.rsvp-form::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.rsvp-form::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #3D2F2F;
    font-size: 1.1rem;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #C4B5A0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background-color: #FFFFFF;
    color: #3D2F2F;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #8B6F47;
    box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.1);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 400;
    color: #3D2F2F;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #8B6F47;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #5C4A3A 0%, #4A3A2A 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    margin-top: 1rem;
    text-transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #4A3A2A 0%, #5C4A3A 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* Organizational Section */
.organizational-card {
    max-width: 440px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 1rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
}

.organizational-content {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    background-color: #FFFFFF;
}

.org-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #3D2F2F;
    margin: 0 auto 1.5rem;
    font-family: 'Lato', sans-serif;
    max-width: 380px;
}

.contact-info {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3D2F2F;
    margin: 1.5rem 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.whatsapp-icon {
    font-size: 1.4rem;
    opacity: 0.8;
}

.phone-number {
    color: #3D2F2F;
}

.organizational-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}

.organizational-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
}

/* Location Section */
.location-section {
    max-width: 440px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
}

.location-intro {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #6B5D5D;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.map-container {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 0 0 1.5rem;
    border: 1px solid #D4C4B0;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.location-message {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #3D2F2F;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.location-couple-names {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3D2F2F;
    margin: 0.5rem 0;
    letter-spacing: 0.5px;
}

.location-heart {
    font-size: 1.3rem;
    color: #2C2C2C;
    margin: 1rem 0 0;
    opacity: 0.6;
    font-weight: 300;
    display: inline-block;
    line-height: 1;
}

/* Audio Control Button */
.audio-control-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #4A5A4A;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.audio-control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.audio-control-btn:active {
    transform: scale(0.95);
}

.audio-control-btn .play-icon,
.audio-control-btn .pause-icon {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-control-btn .play-icon {
    margin-left: 2px;
}

.audio-control-btn .pause-icon {
    font-size: 1rem;
    letter-spacing: -2px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 4rem 1rem 3rem;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}

.footer-message {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #6B5D5D;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.footer-names {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: #3D2F2F;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.footer-heart {
    font-size: 1.3rem;
    color: #8B6F47;
    opacity: 0.7;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero-video-section {
        min-height: 100vh;
        justify-content: space-between;
    }

    /* Show mobile header and footer, hide desktop content */
    .hero-mobile-header {
        display: block;
        padding: 2.5rem 1rem 1rem;
    }

    .hero-mobile-footer {
        display: block;
        padding: 1rem;
    }

    .hero-content {
        display: none;
    }

    .couple-names-mobile {
        font-size: 2.2rem;
    }

    .wedding-date-mobile {
        font-size: 0.75rem;
    }

    .confirm-attendance-mobile {
        font-size: 0.8rem;
    }

    .landing-frame-container {
        max-width: 400px;
    }

    .landing-title {
        font-size: 2.2rem;
    }

    .landing-subtitle {
        font-size: 1rem;
    }

    .landing-content {
        padding: 1.5rem;
    }

    .landing-text-content {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .landing-subtitle{
        margin-bottom: 1rem;
    }

    .discover-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.5rem;
        display: block;
        min-width: 150px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .welcome-section {
        margin: 2rem auto;
        padding: 0 1rem 3rem;
    }

    .welcome-section,
    .timeline-section,
    .location-section {
        margin: 1.5rem auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .rsvp-section {
        margin: 1.5rem auto;
        padding: 1.5rem 1rem;
        border-radius: 0;
        box-shadow: none;
    }

    .rsvp-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .rsvp-form {
        padding: 1.5rem 1rem;
    }

    .organizational-card {
        margin: 1.5rem auto;
        padding: 0 1rem;
        border-radius: 0;
        box-shadow: none;
    }

    .organizational-content {
        padding: 1.5rem 1rem 1rem;
    }

    .dove-container {
        width: 80px;
        height: 80px;
        right: 0.5rem;
    }

    .timeline-event-line {
        font-size: 0.9rem;
    }

    .address {
        font-size: 0.8rem;
        padding-left: 0.8rem;
    }

    .rsvp-form {
        padding: 1.5rem 1rem;
    }


    .map-container iframe {
        height: 280px;
    }

    .location-intro {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .countdown-section {
        margin: 3rem auto 2rem;
    }

    .countdown-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
        margin-top: -0.8rem;
    }

    .countdown-item {
        min-width: 50px;
    }

    .audio-control-btn {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .audio-control-btn .play-icon,
    .audio-control-btn .pause-icon {
        font-size: 1rem;
    }

    .audio-control-btn .pause-icon {
        font-size: 0.9rem;
    }
}


