/* =========================================
   1. SETUP WARNA & FONT GLOBAL
   ========================================= */
:root {
    --primary: #52796f;
    /* Hijau Tua */
    --secondary: #84a98c;
    /* Sage Green */
    --accent: #cad2c5;
    /* Hijau Pucat */
    --gold: #b08d55;
    /* Emas Elegan */
    --bg: #fdfcf8;
    /* Putih Gading (Paper) */
    --text: #2f3e46;
    /* Abu Gelap */
    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset Standar Browser */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Set Body (Background Luar Gelap untuk Laptop) */
body {
    background: #111;
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    /* Mencegah scroll samping yang tidak perlu */
}

/* =========================================
   2. CONTAINER UTAMA (RESPONSIVE HP)
   ========================================= */
.mobile-container {
    /* KUNCI: Batasi lebar max 480px agar tetap bentuk HP di Laptop */
    max-width: 480px;
    margin: 0 auto;
    /* Posisi Tengah */
    background: var(--bg);
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow-x: hidden;
    /* Bayangan agar terlihat elegan di Laptop */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* =========================================
   3. PRELOADER (LOADING LOVE)
   ========================================= */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary);
}

.heart-loader {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    transform: rotate(45deg);
    animation: heartbeat 1.2s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(0.8) rotate(45deg);
    }

    50% {
        transform: scale(1.1) rotate(45deg);
    }

    100% {
        transform: scale(0.8) rotate(45deg);
    }
}

/* =========================================
   4. OPENING MODAL (SAMPUL DEPAN)
   ========================================= */
#opening-modal {
    position: fixed;
    top: 0;

    /* Gunakan 100dvh agar tinggi pas di HP (tanpa ketutup URL bar) */
    height: 100vh;
    height: 100dvh;

    /* LOGIKA: Lebar mengikuti Container, Posisi di Tengah */
    width: 100%;
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;

    background: url('asset/wedding8.jpg') center 25% / cover no-repeat;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease-in-out;
}

/* Class untuk menyembunyikan modal saat dibuka */
#opening-modal.hide {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.158);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.221);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    width: 85%;
    max-width: 400px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: white;
}

.main-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.guest-box {
    background: rgba(0, 0, 0, 0.253);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.btn-open {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

/* =========================================
   5. HERO SECTION (ANTI-GLITCH)
   ========================================= */
.hero {
    /* Tinggi dinamis dikunci JS agar tidak lompat di HP */
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);

    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary);
    background: #fdfcf8;
    overflow: hidden;
}

/* Layer Gambar Background (Dipisah agar stabil) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* Lebih tinggi dikit */

    background: url('asset/wedding1.jpg') center center / cover no-repeat;

    /* Overlay transparan */
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: overlay;

    z-index: 1;
    will-change: transform;
}

/* Konten Nama Mempelai */
.hero-content {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.381);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    width: 85%;
    max-width: 350px;
    transform: translateY(-80px);
    /* Naik sedikit ke atas */
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--primary);
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h4 {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
}

/* Responsif Hero di HP Kecil */
@media (max-width: 768px) {
    .hero-content {
        width: 85%;
        max-width: 350px;
        padding: 25px 15px;
        background: rgba(255, 255, 255, 0.381);
        margin-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content h4 {
        font-size: 0.8rem;
    }
}

/* =========================================
   6. COMPONENT UMUM
   ========================================= */
.section-padding {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.bg-light {
    background-color: #f4f7f5;
}

.bg-green {
    background-color: var(--primary);
    color: white;
}

.text-white {
    color: white !important;
}

.title-head h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.bg-green .title-head h2 {
    color: white;
}

.divider {
    height: 3px;
    width: 50px;
    background: var(--gold);
    margin: 0 auto 40px;
}

/* =========================================
   7. MEMPELAI (ARCH STYLE)
   ========================================= */
.arch-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* Wajib sejajar */
    gap: 5px;
    margin-top: 20px;
    width: 100%;
}

.arch-card {
    flex: 1;
    max-width: 180px;
    min-width: 0;
    text-align: center;
    position: relative;
}

.arch-connector {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--gold);
    margin-top: 70px;
    width: 30px;
    flex-shrink: 0;
    text-align: center;
}

.arch-frame {
    width: 100%;
    height: 220px;
    border-radius: 100px 100px 10px 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    margin-bottom: 10px;
}

.arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: 0.5s;
}

.arch-info h3 {
    font-family: var(--font-head);
    color: var(--primary);
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 5px;
    min-height: 2.4em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.parent-name {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    line-height: 1.2;
    min-height: 2.4em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.divider-small {
    width: 20px;
    height: 2px;
    background: var(--gold);
    margin: 8px auto;
}

/* Responsif Mempelai di HP Kecil */
@media (max-width: 768px) {
    .arch-container {
        flex-wrap: nowrap;
        gap: 5px;
    }

    .arch-card {
        max-width: 48%;
    }

    .arch-frame {
        height: 160px;
        border-radius: 70px 70px 10px 10px;
    }

    .arch-connector {
        font-size: 1.5rem;
        margin-top: 50px;
        width: 20px;
    }

    .arch-info h3 {
        font-size: 0.9rem;
        min-height: 2.2em;
    }

    .parent-name {
        font-size: 0.65rem;
        min-height: 2.5em;
    }
}

/* Tombol Sosmed */
.btn-socmed {
    background: transparent;
    color: var(--gold);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 25px;
    border-radius: 50px;
    border: 1.5px solid var(--gold);
    transition: 0.3s;
    margin-top: auto;
}

.btn-socmed:hover {
    background: var(--gold);
    color: white;
    box-shadow: 0 5px 15px rgba(176, 141, 85, 0.4);
    transform: translateY(-3px);
}

.btn-socmed:hover i {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

/* Media Query Khusus HP Sangat Kecil (< 360px) */
@media (max-width: 360px) {
    .arch-frame {
        height: 180px;
    }

    .arch-connector {
        font-size: 1.8rem;
        margin-top: 70px;
    }

    .arch-info h3 {
        font-size: 1rem;
    }

    .btn-socmed {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

/* =========================================
   8. TIMELINE (LOVE STORY)
   ========================================= */
.timeline {
    border-left: 3px solid var(--secondary);
    margin-left: 20px;
    padding: 10px 0 10px 25px;
    text-align: left;
}

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

.dot {
    position: absolute;
    left: -34px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--secondary);
    z-index: 2;
}

.content {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.story-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.timeline-item:hover .story-img img {
    transform: scale(1.1);
}

.content h4 {
    color: var(--primary);
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* =========================================
   9. EVENTS & COUNTDOWN
   ========================================= */
.glass-event-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

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

.btn-maps {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

#countdown div {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
    font-size: 0.8rem;
}

#countdown span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-head);
}

/* =========================================
   10. GALERI (SCROLL & FEATURED)
   ========================================= */
.featured-media {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    cursor: pointer;
    position: relative;
}

.featured-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.scroll-container {
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-item {
    flex: 0 0 auto;
    width: 200px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.scroll-item:hover {
    transform: translateY(-5px);
}

.scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   11. TOAST NOTIFICATION (POPUP)
   ========================================= */
.toast-notification {
    visibility: hidden;
    min-width: 215px;
    background-color: var(--primary);
    color: white;
    text-align: center;
    border-radius: 50px;
    padding: 10px;
    position: fixed;
    z-index: 10000;

    /* Tengah Horizontal */
    left: 50%;
    transform: translateX(-50%);

    /* Awal Sembunyi di Atas */
    top: -100px;
    bottom: auto;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.5s, top 0.5s ease-in-out;
}

/* Saat Muncul */
.toast-notification.show {
    visibility: visible;
    opacity: 1;
    top: 30px;
}

/* Saat Error (Merah) */
.toast-notification.error {
    background-color: #d62828;
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
}

/* =========================================
   12. GIFT & RSVP (MODERN FORM)
   ========================================= */
.gift-intro p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.gift-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gift-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 1 1 300px;
    max-width: 350px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.gift-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--secondary);
}

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

.bank-logo {
    height: 30px;
    margin-bottom: 15px;
    object-fit: contain;
}

.rek-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.rek-name {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.btn-copy {
    background-color: #f0f4f1;
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-copy:hover {
    background-color: var(--secondary);
    color: white;
}

/* Modern Form RSVP */
.modern-form {
    max-width: 500px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modern-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: #f9f9f9;
    transition: 0.3s;
    background-color: #e9ecef;
    /* Abu muda */
    color: #6c757d;
    /* Teks abu tua */
    border-color: #d1d3e2;
    pointer-events: none;
    /* Supaya ga bisa diklik */
    font-weight: bold;
}

.modern-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: #f9f9f9;
    transition: 0.3s;
}

.modern-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.modern-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
    margin-top: 10px;
    align-self: center;
}

.modern-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: var(--secondary);
}

/* Styling Tambahan untuk Form Konfirmasi */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

/* Menyamakan style Select dengan Input */
.modern-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: #f9f9f9;
    transition: 0.3s;
    appearance: none;
    /* Hilangkan panah default browser */
    /* Ganti panah custom (opsional) */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2352796f%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}

.modern-form select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* =========================================
   13. LIVE WISHES LIST
   ========================================= */
.wishes-box {
    max-width: 500px;
    margin: 30px auto 0;
    padding-bottom: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
}

.wishes-header {
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
    font-weight: bold;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

/* Update bagian ini di style.css */
.wishes-list {
    height: 300px;
    overflow-y: hidden;
    /* Ubah jadi hidden agar user tidak ganggu auto-scroll */
    padding: 0px;
    background: #fdfdfd;

    /* PENTING: Matikan smooth scroll agar reset ke 0 instan (tidak rewind) */
    scroll-behavior: auto !important;

    /* Sembunyikan Scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}

.wishes-list::-webkit-scrollbar {
    display: none;
}

.wish-item {
    padding: 15px 20px;
    border-bottom: 1px dashed #ddd;
    animation: fadeIn 0.5s ease;
}

.wish-name {
    font-weight: bold;
    color: var(--primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wish-date {
    font-size: 0.7rem;
    color: #999;
    font-weight: normal;
    margin-left: auto;
}

.wish-text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
    line-height: 1.5;

    /* --- TEKNIK PEMOTONG KATA (ANTI-JABLAY) --- */

    /* 1. Standar Modern: Memotong kata hanya jika terlalu panjang */
    overflow-wrap: break-word;

    /* 2. Support Browser Lama (Fallback) */
    word-wrap: break-word;

    /* 3. Paksa potong meskipun itu satu kata panjang tanpa spasi */
    word-break: break-word;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.btn-calendar {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-calendar:hover {
    background: white;
    color: var(--primary);
}

/* =========================================
   14. FLOATING ELEMENTS (NAV & MUSIC)
   ========================================= */
.glass-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.292);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 90%;
    max-width: 400px;
    padding: 12px 0;
    border-radius: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.glass-nav a {
    color: var(--primary);
    font-size: 1.1rem;
    transition: 0.3s;
    position: relative;
    padding: 5px;
}

.glass-nav a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

#music-btn {
    position: fixed;
    top: 30px;
    z-index: 10006;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: var(--primary);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
    /* Posisi Responsive (Default HP) */
    right: 20px;
}

@media (min-width: 481px) {
    #music-btn {
        right: auto;
        left: 50%;
        margin-left: 180px;
    }
}

#music-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.1s ease;
}

#icon-music {
    opacity: 1;
    animation: spin 8s linear infinite;
}

#icon-pause {
    opacity: 0;
}

#music-btn.paused #icon-music {
    opacity: 0;
    animation-play-state: paused !important;
}

#music-btn.paused #icon-pause {
    opacity: 1;
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 30px 20px 100px;
    text-align: center;
    font-size: 0.8rem;
}

.noscroll {
    overflow: hidden;
    height: 100vh;
}