/* ============================================================
   THEME 139: Premium Javanese Floral
   style.css — Optimized for Mobile/Smartphone
   ============================================================ */

:root {
    --color-bg: #8c7356;
    --color-dark: #372A21;
    --color-dark-2: #251B14;
    --color-gold: #CBA153;
    --color-gold-light: #F2D588;
    --color-white: #FAF6F0;
    --color-gray: #6B5E54;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    --font-vibes: 'Great Vibes', cursive;

    /* Touch target minimum */
    --touch-min: 44px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent; /* Hapus highlight tap di mobile */
}

html {
    scroll-behavior: smooth;
    /* Cegah zoom saat tap input di iOS */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--color-dark);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Smooth scroll di iOS */
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    /* Pastikan teks tidak terlalu kecil di mobile */
    font-size: 1rem;
    touch-action: manipulation; /* Cegah delay 300ms */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
}

.center { text-align: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.block { display: block; }
.max-w-lg { max-width: 32rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }
.text-gold { color: var(--color-gold); }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-5xl { font-size: clamp(2rem, 8vw, 3rem); } /* Responsive font */
.font-cinzel { font-family: var(--font-heading); }
.font-vibes { font-family: var(--font-vibes); }
.tracking-widest { letter-spacing: 0.25em; }
.opacity-50 { opacity: 0.5; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-shadow { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
.text-white { color: #fff; }

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 14px 28px; /* Lebih tinggi untuk touch */
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-gold-light);
    border-radius: 4px;
    transition: all 0.3s ease;
    min-height: var(--touch-min); /* Minimum touch target */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover,
.btn-primary:active {
    background: transparent;
    color: var(--color-gold);
}

.btn-primary:disabled {
    background: transparent;
    color: var(--color-gold);
    opacity: 0.6;
}

.btn-primary.copied {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

/* =====================
   LOADING SCREEN
   ===================== */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-jawa {
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.loading-logo {
    font-family: var(--font-heading);
    color: var(--color-gold);
    letter-spacing: 3px;
    font-size: clamp(1rem, 4vw, 1.5rem);
    text-align: center;
    padding: 0 16px;
}

/* =====================
   COVER HERO
   ===================== */
.cover-section {
    position: relative;
    height: 100dvh; /* dvh lebih akurat di mobile (memperhitungkan browser chrome) */
    height: 100vh; /* Fallback */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.cover-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0,0,0,0.2);
}

.cover-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 30px 20px 100px; /* Padding bawah lebih karena nav */
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease;
}

.cover-content.show-text {
    opacity: 1;
    pointer-events: auto;
}

.garis-divider {
    max-width: 200px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.garis-divider.invert {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.ornament-top {
    width: clamp(120px, 40vw, 180px);
    margin-bottom: 16px;
    opacity: 0.8;
    margin-left: auto;
    margin-right: auto;
}

.ornament-bottom {
    width: clamp(120px, 40vw, 180px);
    margin-top: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
    margin-left: auto;
    margin-right: auto;
}

.cover-tagline {
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
}

.cover-names {
    margin: 12px 0;
}

.cover-names h1 {
    font-family: var(--font-vibes);
    font-size: clamp(3.5rem, 14vw, 5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cover-names span {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    color: var(--color-gold);
    display: block;
    margin: 4px 0;
}

.cover-date {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    letter-spacing: 3px;
    color: #fff;
}

.panel-jawa p {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.panel-jawa h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    color: #fff;
}

/* =====================
   MAIN CONTENT
   ===================== */
#main-content {
    display: none;
    opacity: 0;
    transition: opacity 1.2s;
    position: relative;
    z-index: 20;
    background: var(--color-white);
}

#main-content.show {
    display: block;
    opacity: 1;
}

.section {
    padding: 60px 0; /* Sedikit lebih kecil di mobile */
    position: relative;
}

.section-header {
    margin-bottom: 40px;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    font-weight: 700;
}

.subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    line-height: 1.6;
}

/* =====================
   BACKGROUNDS
   ===================== */
.bg-1 { background: url('../assets/bg-section-1.jpg') center/cover no-repeat; }
.bg-2 { background: url('../assets/bg-section-4.jpg') center/cover no-repeat; }
.bg-4 { background: url('../assets/bg-section-2.jpg') center/cover no-repeat; }
.bg-5 { background: url('../assets/bg-section-5.jpg') center/cover no-repeat; }
.bg-div { background: url('../assets/bg-div.jpg') center/cover no-repeat; }

.section-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.section-overlay.dark {
    background: rgba(37, 27, 20, 0.85);
}

/* =====================
   BOTTOM NAV — Mobile Optimized
   ===================== */
#bottom-nav {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: flex;
    gap: 2px;
    background: rgba(37, 27, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 12px;
    border-radius: 40px;
    border: 1px solid rgba(203, 161, 83, 0.6);
    /* Hindari lebar melebihi layar */
    max-width: calc(100vw - 32px);
    overflow-x: auto;
    /* Sembunyikan scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Tambah shadow agar terlihat di atas konten */
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

#bottom-nav::-webkit-scrollbar {
    display: none;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 10px;
    color: rgba(255,255,255,0.7);
    transition: 0.2s;
    border-radius: 10px;
    min-width: 48px; /* Minimum touch target lebar */
    min-height: var(--touch-min);
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex-shrink: 0;
}

.nav-item i {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.nav-item span {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-item.active,
.nav-item:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* =====================
   MUSIC BUTTON
   ===================== */
.music-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 950;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.music-btn.playing {
    animation: spin 4s linear infinite;
}

/* =====================
   MEMPELAI
   ===================== */
.intro-text {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 8px;
}

.quran-quote {
    font-style: italic;
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.couple-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media(min-width: 768px) {
    .couple-wrapper {
        flex-direction: row;
        justify-content: space-around;
    }
}

.profile-card {
    text-align: center;
    max-width: 280px;
    width: 100%;
}

.frame-jawa {
    width: clamp(160px, 50vw, 220px);
    height: clamp(210px, 65vw, 300px);
    margin: 0 auto 16px;
    border: 3px solid var(--color-gold);
    padding: 4px;
    background: var(--color-white);
    border-radius: 100px 100px 0 0;
    overflow: hidden;
}

.frame-jawa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 95px 95px 0 0;
}

.profile-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 5vw, 2.2rem);
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.title-jawa {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 8px;
    line-height: 1.5;
}

.social-btn {
    display: inline-block;
    font-size: 0.85rem;
    padding: 8px 16px;
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    color: var(--color-dark);
    min-height: var(--touch-min);
    display: inline-flex;
    align-items: center;
}

.divider-and {
    font-family: var(--font-vibes);
    font-size: clamp(2.5rem, 10vw, 4rem);
    color: var(--color-gold);
}

/* =====================
   ACARA (EVENT)
   ===================== */
.event-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media(min-width: 700px) {
    .event-grid {
        flex-direction: row;
    }
}

.jv-box {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
    background: rgba(250, 246, 240, 0.05);
    border: 1px solid var(--color-gold);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.icon-event {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.jv-box h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    color: var(--color-gold-light);
    margin-bottom: 12px;
}

.event-date {
    font-weight: bold;
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: #fff;
}

.event-time {
    font-style: italic;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.event-location p {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Countdown */
.countdown-container {
    margin-top: 24px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 4vw, 24px);
    flex-wrap: wrap;
}

.cd-item {
    text-align: center;
    min-width: 56px;
}

.cd-item span {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    color: var(--color-gold);
    line-height: 1;
}

.cd-item small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
}

/* =====================
   GALLERY
   ===================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

@media(min-width: 700px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .span-2 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gal-item {
    display: block;
    overflow: hidden;
    border: 2px solid var(--color-gold);
    aspect-ratio: 1;
    /* Improve touch interaction */
    -webkit-tap-highlight-color: transparent;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    /* GPU acceleration */
    will-change: transform;
}

.gal-item:hover img,
.gal-item:active img {
    transform: scale(1.08);
}

/* =====================
   STORY
   ===================== */
.story-wrapper {
    max-width: 600px;
    margin: 0 auto;
    border-left: 2px dashed var(--color-gold);
    padding-left: 24px;
}

.story-box {
    position: relative;
    margin-bottom: 36px;
}

.story-box::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gold);
    border: 3px solid var(--color-dark);
}

.story-box h4 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-bottom: 4px;
}

.story-time {
    display: block;
    font-size: 0.82rem;
    opacity: 0.7;
    margin-bottom: 8px;
    font-style: italic;
}

/* =====================
   RSVP
   ===================== */
.flex-row {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

@media(min-width: 800px) {
    .flex-row {
        flex-direction: row;
    }

    .rsvp-form,
    .rsvp-messages {
        flex: 1;
    }
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-jawa {
    width: 100%;
    padding: 14px 15px; /* Lebih tinggi untuk touch */
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(203, 161, 83, 0.5);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px; /* PENTING: 16px mencegah auto-zoom di iOS */
    -webkit-appearance: none; /* Reset iOS styling */
    appearance: none;
    min-height: var(--touch-min);
    transition: border-color 0.2s;
}

.input-jawa:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Styling khusus untuk select di iOS */
select.input-jawa {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23CBA153' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

textarea.input-jawa {
    min-height: 100px;
    resize: vertical;
}

.feedback {
    margin-top: 14px;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    display: none;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feedback.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #fff;
}

.feedback.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #fff;
}

.msg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(203, 161, 83, 0.3);
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.msg-count {
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.msg-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 6px;
    -webkit-overflow-scrolling: touch;
}

/* Override AOS di dalam msg-list — elemen di dalam overflow container
   tidak ter-observe IntersectionObserver dengan benar di mobile */
.msg-list [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.msg-list::-webkit-scrollbar { width: 4px; }
.msg-list::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 10px; }

.comment-item {
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--color-gold);
    margin-bottom: 12px;
    border-radius: 0 4px 4px 0;
    /* Animasi masuk native — tidak bergantung AOS agar selalu terlihat */
    animation: commentFadeIn 0.4s ease forwards;
    opacity: 1; /* Pastikan selalu visible, override AOS jika ada */
}

@keyframes commentFadeIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cm-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.cm-name {
    font-family: var(--font-heading);
    font-weight: bold;
    color: #fff;
    font-size: 0.9rem;
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.cm-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    word-break: break-word;
}

.badge {
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.bg-success { background: #4caf50; color: #fff; }
.bg-warning { background: #ff9800; color: #fff; }

/* =====================
   VENDOR
   ===================== */
.vendor-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.vendor-item {
    width: clamp(160px, 44vw, 220px);
    padding: 24px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-gold);
}

.vendor-item h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* =====================
   AMPLOP / GIFT
   ===================== */
.gift-box {
    background: #fff;
    padding: 32px 24px;
    max-width: 380px;
    margin: 0 auto 20px;
    border: 2px solid var(--color-gold);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.icon-gift {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.rek-number {
    font-size: clamp(1.4rem, 6vw, 2rem);
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--color-dark);
    letter-spacing: 2px;
    margin: 10px 0;
    word-break: break-all;
}

.rek-name {
    font-style: italic;
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    padding: 60px 0 40px;
}

/* =====================
   SAFE AREA (iPhone notch/home indicator)
   ===================== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    #bottom-nav {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }

    .footer  {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }
}

/* =====================
   SMALL SCREENS (<380px)
   ===================== */
@media (max-width: 380px) {
    .cover-names h1 {
        font-size: 3rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gal-item.span-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    #bottom-nav {
        padding: 6px 8px;
    }

    .nav-item {
        padding: 6px 8px;
        min-width: 42px;
    }

    .nav-item span {
        font-size: 0.5rem;
    }
}

/* =====================
   LANDSCAPE MOBILE
   ===================== */
@media (max-height: 500px) and (orientation: landscape) {
    .cover-section {
        height: 100svh;
    }

    .cover-names h1 {
        font-size: 2.5rem;
    }

    .ornament-top,
    .ornament-bottom {
        width: 100px;
        margin-bottom: 8px;
        margin-top: 8px;
    }

    .cover-content {
        padding-top: 16px;
        padding-bottom: 70px;
    }

    #bottom-nav {
        bottom: 8px;
    }
}

/* =====================
   REDUCE MOTION (Accessibility)
   ===================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .music-btn.playing {
        animation: none;
    }
}