/* ============================================
   WEDDING INVITATION - ELEGANT DEMO THEME
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --white: #ffffff;
    --off-white: #fbf8f1;
    --light-gray: #f2ece1;
    --gray-100: #ebe2d5;
    --gray-200: #d8cabb;
    --gray-300: #b9aa99;
    --gray-400: #8f8275;
    --gray-500: #6f6358;
    --gray-600: #564b42;
    --gray-700: #3f3832;
    --gray-800: #2a2520;
    --dark: #171513;
    --gold: #c8a35d;
    --gold-light: #ead4a0;
    --gold-dark: #9f7f3f;
    --rose: #c88f86;
    --sage: #6f806a;
    --sage-dark: #39443b;

    --font-display: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.12);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background:
        linear-gradient(180deg, rgba(251, 248, 241, 0.96) 0%, rgba(242, 236, 225, 0.98) 100%);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.hidden {
    display: none !important;
}

/* ---- Main Content Popup Animation ---- */
.main-content {
    animation: none;
}

.main-content.popup-enter {
    display: block !important;
    animation: popupReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popupReveal {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(40px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ---- Section Titles ---- */
.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gray-400);
    text-align: center;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 12px;
}

/* ---- Ornament Dividers ---- */
.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-icon {
    color: var(--gold);
    font-size: 0.7rem;
    margin: 0 12px;
}

.countdown-ornament,
.couple-ornament,
.event-ornament,
.gallery-ornament,
.story-ornament,
.rsvp-ornament,
.wishes-ornament,
.gift-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* ============================================
   COVER SECTION
   ============================================ */
.cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--sage-dark) 0%, #4b443d 44%, var(--dark) 100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cover.fade-out {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(234, 212, 160, 0.12), transparent 45%),
        linear-gradient(315deg, rgba(111, 128, 106, 0.25), transparent 42%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px);
}

.cover-content {
    text-align: center;
    color: var(--gray-200);
    z-index: 1;
    padding: 40px;
    animation: coverFadeIn 1.5s ease;
    width: min(92vw, 620px);
}

@keyframes coverFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.cover-ornament {
    margin: 20px auto;
    width: 200px;
}

.ornament-svg {
    width: 100%;
    color: var(--gold);
}

/* Cover Photos */
.cover-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    animation: coverPhotosIn 1.8s ease;
}

@keyframes coverPhotosIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.cover-photo-couple {
    width: 220px;
    height: 280px;
    border-radius: 120px 120px 60px 60px;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 8px 35px rgba(201, 163, 93, 0.25);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.cover-photo-couple:hover {
    transform: scale(1.03);
}

.cover-photo-couple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 118px 118px 58px 58px;
    border: 3px solid var(--gray-800);
    background: #f6f1ea;
}

.cover-photo-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 4px 25px rgba(201, 169, 110, 0.35);
    transition: transform 0.4s ease;
}

.cover-photo-frame:hover {
    transform: scale(1.05);
}

.cover-photo-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-800);
}

.cover-photo-heart {
    color: var(--gold);
    font-size: 1.2rem;
    animation: heartbeat 2s ease-in-out infinite;
}

.cover-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.cover-names {
    font-family: var(--font-script);
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 10px 0;
    text-shadow: 0 2px 20px rgba(201, 169, 110, 0.3);
}

.cover-names .ampersand {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    margin: 0 10px;
}

.cover-date-preview {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--gray-300);
    margin-top: 10px;
    text-transform: uppercase;
}

.cover-guest {
    margin-top: 40px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-300);
}

.cover-guest .guest-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-top: 5px;
    font-weight: 500;
}

.btn-open {
    margin-top: 30px;
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-open:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.btn-open:focus-visible,
.btn-map:focus-visible,
.btn-rsvp:focus-visible,
.btn-wish:focus-visible,
.btn-copy:focus-visible,
.music-toggle:focus-visible {
    outline: 3px solid rgba(234, 212, 160, 0.55);
    outline-offset: 3px;
}

.btn-open i {
    font-size: 1rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(216, 202, 187, 0.75);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
    padding: 8px 0;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.navbar li {
    flex: 1;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 5px;
    font-size: 0.65rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--sage);
}

.nav-link.active i {
    transform: scale(1.15);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(23, 21, 19, 0.94), rgba(57, 68, 59, 0.88)),
        url('images/couple-sketch.png') center 46% / min(68vh, 520px) auto no-repeat,
        var(--gray-800);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(23, 21, 19, 0.35), rgba(23, 21, 19, 0.72)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 82px);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(120deg, transparent 30%, rgba(234, 212, 160, 0.08) 48%, transparent 66%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-2%, -2%); }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    max-width: 700px;
}

.hero-content::before,
.hero-content::after {
    content: '';
    display: block;
    width: 84px;
    height: 1px;
    margin: 0 auto 26px;
    background: linear-gradient(90deg, transparent, rgba(234, 212, 160, 0.9), transparent);
}

.hero-content::after {
    margin: 26px auto 0;
}

.hero-ornament {
    margin: 15px auto;
}

.divider-line {
    width: 120px;
    margin: 0 auto;
    display: block;
    opacity: 0.6;
}

.hero-bismillah {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 2;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray-300);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-300);
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 28px;
}

.hero-names {
    font-family: var(--font-script);
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(201, 169, 110, 0.3);
    line-height: 1.2;
}

.hero-names .amp {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin: 5px 0;
}

.hero-date-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    padding: 10px 18px;
    color: var(--gold-light);
    border: 1px solid rgba(234, 212, 160, 0.42);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown {
    background:
        linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    padding: 80px 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
    padding: 20px 16px 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(216, 202, 187, 0.82);
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(63, 56, 50, 0.08);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1;
    background: linear-gradient(135deg, var(--gray-800), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 8px;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
    margin-top: -15px;
}

.countdown-note {
    max-width: 520px;
    margin: 28px auto 0;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-500);
}

/* ============================================
   COUPLE SECTION
   ============================================ */
.couple {
    background:
        linear-gradient(180deg, var(--off-white) 0%, #f5eee5 100%);
    padding: 80px 0 60px;
}

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

/* Single Couple Photo */
.couple-single-photo {
    width: 100%;
    max-width: 420px;
}

.couple-photo-large {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 200px 200px 30px 30px;
    padding: 5px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.couple-photo-large:hover {
    transform: scale(1.02);
}

.couple-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 197px 197px 27px 27px;
    border: 4px solid var(--white);
    transition: transform 0.5s ease;
}

.couple-photo-large:hover img {
    transform: scale(1.03);
}

/* Couple Info */
.couple-info-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.couple-card {
    text-align: center;
    max-width: 320px;
    flex: 1;
    min-width: 260px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(216, 202, 187, 0.72);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.couple-role {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--sage);
}

.couple-photo-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: var(--shadow-lg);
}

.couple-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid var(--white);
}

.couple-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.groom-photo img {
    object-position: 30% top;
}

.bride-photo img {
    object-position: 70% top;
}

.couple-photo:hover img {
    transform: scale(1.08);
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--gray-300);
}

.couple-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.couple-child {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gray-400);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 5px;
}

.couple-parents {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.8;
}

.couple-social {
    margin-top: 15px;
}

.couple-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.couple-social a:hover {
    background: var(--gold);
    color: var(--white);
}

.couple-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.heart-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

/* ============================================
   EVENT SECTION
   ============================================ */
.event {
    background:
        linear-gradient(180deg, var(--white), #fbf8f1);
    padding: 80px 0;
}

.event-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.event-card {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border: 1px solid rgba(216, 202, 187, 0.8);
    box-shadow: 0 18px 45px rgba(63, 56, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-icon {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sage), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.event-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.event-detail {
    margin-bottom: 25px;
}

.event-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.event-info i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    min-width: 18px;
    text-align: center;
}

.event-info p {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
    box-shadow: 0 4px 15px rgba(111, 128, 106, 0.24);
}

/* Map */
.map-container {
    margin-top: 20px;
}

.map-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 20px;
}

.map-title i {
    color: var(--gold);
    margin-right: 8px;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 350px;
}

/* Map Link Card */
.map-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 30px;
    background: var(--white);
    border: 1px solid rgba(216, 202, 187, 0.8);
    border-radius: 8px;
    box-shadow: 0 16px 45px rgba(63, 56, 50, 0.08);
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.map-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.map-link-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sage), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
}

.map-link-info {
    flex: 1;
}

.map-link-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.map-link-info p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.map-link-action {
    flex-shrink: 0;
}

.map-link-action span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-dark);
    white-space: nowrap;
}

.map-link-card:hover .map-link-action span {
    color: var(--gold);
}

@media (max-width: 480px) {
    .map-link-card {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 20px;
    }
}

/* ============================================
   VERSE SECTION
   ============================================ */
.verse {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--gray-800) 100%);
    padding: 80px 0;
}

.verse-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 44px 36px;
    border: 1px solid rgba(234, 212, 160, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
}

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

.verse-arabic {
    font-size: 1.6rem;
    color: var(--gold-light);
    line-height: 2.2;
    margin-bottom: 25px;
    direction: rtl;
}

.verse-translation {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gray-300);
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 15px;
}

.verse-source {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--off-white);
    padding: 80px 0;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(15%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray-400);
}

.gallery-placeholder i {
    font-size: 2rem;
}

.gallery-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   LOVE STORY / TIMELINE
   ============================================ */
.story {
    background:
        linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    padding: 80px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-light));
}

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

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

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold-light);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid rgba(216, 202, 187, 0.78);
    box-shadow: 0 12px 32px rgba(63, 56, 50, 0.07);
}

.timeline-date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-date i {
    margin-right: 5px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.timeline-content p {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   RSVP SECTION
   ============================================ */
.rsvp {
    background:
        linear-gradient(180deg, #f5eee5 0%, var(--off-white) 100%);
    padding: 80px 0;
}

.rsvp-card,
.wishes-form-card {
    max-width: 550px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(216, 202, 187, 0.78);
    box-shadow: 0 18px 45px rgba(63, 56, 50, 0.08);
}

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

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--gold);
    margin-right: 6px;
}

.form-group input[type="text"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 10px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: fit-content;
    justify-content: center;
}

.radio-label:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
    color: var(--gold-dark);
}

.radio-label input[type="radio"] {
    accent-color: var(--gold);
}

.radio-custom {
    display: none;
}

.btn-rsvp,
.btn-wish {
    width: 100%;
    padding: 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-rsvp:hover,
.btn-wish:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.4);
}

/* ============================================
   WISHES SECTION
   ============================================ */
.wishes {
    background:
        linear-gradient(180deg, var(--white), var(--off-white));
    padding: 80px 0 60px;
}

.wishes-list {
    max-width: 600px;
    margin: 0 auto;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.wishes-list::-webkit-scrollbar {
    width: 4px;
}

.wishes-list::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 10px;
}

.wish-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    border: 1px solid rgba(216, 202, 187, 0.76);
    transition: transform 0.2s ease;
}

.wish-card:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 28px rgba(63, 56, 50, 0.07);
}

.wish-avatar {
    flex-shrink: 0;
}

.wish-avatar i {
    font-size: 2.5rem;
    color: var(--gray-300);
}

.wish-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.wish-content p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 5px;
}

.wish-time {
    font-size: 0.75rem;
    color: var(--gray-300);
}

/* ============================================
   GIFT / AMPLOP DIGITAL
   ============================================ */
.gift {
    background:
        linear-gradient(180deg, var(--off-white), #f1e7db);
    padding: 80px 0;
}

.gift-text {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.gift-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.gift-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    min-width: 250px;
    max-width: 300px;
    flex: 1;
    border: 1px solid rgba(216, 202, 187, 0.78);
    box-shadow: 0 14px 34px rgba(63, 56, 50, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.bank-logo {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sage), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.3rem;
}

.gift-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.account-number {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.account-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gray-400);
    font-style: italic;
    margin-bottom: 15px;
}

.btn-copy {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-dark);
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

/* ============================================
   CLOSING SECTION
   ============================================ */
.closing {
    background: linear-gradient(135deg, var(--gray-800), var(--sage-dark), var(--dark));
    padding: 80px 0;
}

.closing-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.closing-content .ornament-svg {
    color: var(--gold);
    width: 150px;
    margin: 0 auto;
    display: block;
}

.closing-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gray-300);
    font-weight: 300;
    line-height: 1.9;
    margin: 25px 0;
}

.closing-regards {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    font-weight: 400;
    margin-bottom: 15px;
}

.closing-couple {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(201, 169, 110, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 25px 0 90px;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 300;
}

.footer-copy {
    margin-top: 5px;
    font-size: 0.75rem !important;
    color: var(--gray-500) !important;
}

/* ============================================
   MUSIC TOGGLE
   ============================================ */
.music-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-800), var(--dark));
    border: 2px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(201, 169, 110, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    appearance: none;
    padding: 0;
}

.music-toggle:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(201, 169, 110, 0.3);
    border-color: var(--gold-light);
}

.music-toggle:active {
    transform: scale(0.95);
}

/* Disc icon (hidden by default, shown when playing) */
.music-disc {
    position: absolute;
    font-size: 1.6rem;
    color: var(--gold);
    display: none;
    animation: discSpin 3s linear infinite;
}

@keyframes discSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sound bars (hidden by default, shown when playing) */
.music-bars {
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 20px;
}

.music-bars .bar {
    display: block;
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    animation: barBounce 1s ease-in-out infinite;
}

.music-bars .bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.music-bars .bar:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.music-bars .bar:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.music-bars .bar:nth-child(4) { height: 16px; animation-delay: 0.45s; }

@keyframes barBounce {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* Static mute icon (shown by default) */
.music-icon-static {
    font-size: 1rem;
    color: var(--gold);
    transition: opacity 0.3s ease;
}

/* ---- Playing State ---- */
.music-toggle.playing {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-color: var(--gold-light);
    animation: musicRing 2s ease-in-out infinite;
}

.music-toggle.playing .music-disc {
    display: none;
}

.music-toggle.playing .music-bars {
    display: flex;
}

.music-toggle.playing .music-icon-static {
    display: none;
}

@keyframes musicRing {
    0% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(201, 169, 110, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(201, 169, 110, 0); }
    100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(201, 169, 110, 0); }
}

/* ============================================
   FLOATING PARTICLES
   ============================================ */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.15;
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--gold);
    z-index: 10000;
    max-width: 350px;
    animation: slideInRight 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification i {
    color: var(--gold);
    font-size: 1.2rem;
}

.notification p {
    font-size: 0.9rem;
    color: var(--gray-700);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Cover Mobile */
    .cover-content {
        padding: 30px 20px;
    }

    .cover-photo-couple {
        width: 170px;
        height: 220px;
    }

    .cover-names {
        font-size: 2.8rem;
    }

    .cover-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .cover-date-preview {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .cover-guest {
        margin-top: 25px;
    }

    .cover-guest .guest-name {
        font-size: 1.1rem;
    }

    .btn-open {
        padding: 12px 30px;
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .cover-ornament {
        width: 150px;
        margin: 12px auto;
    }

    /* Hero Mobile */
    .hero-names {
        font-size: 3rem;
    }

    .hero-names .amp {
        font-size: 2rem;
    }

    .hero-bismillah {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-date-pill {
        padding: 9px 14px;
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    /* Countdown Mobile */
    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-item {
        min-width: 65px;
        padding: 16px 10px 14px;
    }

    .countdown-separator {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    /* Couple Mobile */
    .couple-single-photo {
        max-width: 300px;
    }

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

    .couple-card {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        padding: 24px 18px;
    }

    .couple-name {
        font-size: 1.4rem;
    }

    .couple-divider {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .heart-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Event Mobile */
    .event-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        padding: 30px 20px;
        min-width: unset;
        width: 100%;
    }

    .event-title {
        font-size: 1.4rem;
    }

    .map-frame iframe {
        min-height: 280px;
    }

    /* Verse Mobile */
    .verse-card {
        padding: 25px 15px;
    }

    .verse-arabic {
        font-size: 1.3rem;
    }

    .verse-translation {
        font-size: 0.95rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Timeline Mobile */
    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .timeline-dot {
        left: -27px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        padding: 18px;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
    }

    /* RSVP & Wishes Mobile */
    .rsvp-card,
    .wishes-form-card {
        padding: 25px 20px;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-label {
        padding: 10px 14px;
    }

    /* Wishes list */
    .wish-card {
        padding: 15px;
        gap: 12px;
    }

    .wish-avatar i {
        font-size: 2rem;
    }

    /* Gift Mobile */
    .gift-cards {
        flex-direction: column;
        align-items: center;
    }

    .gift-card {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        padding: 25px 20px;
    }

    .gift-text {
        font-size: 0.9rem;
    }

    /* Closing Mobile */
    .closing-couple {
        font-size: 2.2rem;
    }

    .closing-text {
        font-size: 0.95rem;
    }

    /* Navbar Mobile */
    .nav-link {
        padding: 6px 4px;
        font-size: 0.58rem;
    }

    .nav-link i {
        font-size: 1rem;
    }

    /* Music Toggle */
    .music-toggle {
        bottom: 72px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .music-bars .bar {
        width: 2.5px;
    }

    .music-icon-static {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 20px 0 80px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    /* Cover Extra Small */
    .cover-photo-couple {
        width: 140px;
        height: 185px;
    }

    .cover-names {
        font-size: 2.2rem;
    }

    .cover-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .cover-ornament {
        width: 120px;
        margin: 8px auto;
    }

    .btn-open {
        padding: 11px 25px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    /* Hero Extra Small */
    .hero-names {
        font-size: 2.5rem;
    }

    .hero-names .amp {
        font-size: 1.8rem;
    }

    .hero-bismillah {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 30px 16px;
    }

    .hero-date-pill {
        max-width: 100%;
        font-size: 0.68rem;
        letter-spacing: 0.8px;
    }

    /* Countdown Extra Small */
    .countdown-timer {
        gap: 6px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 56px;
        padding: 13px 6px 12px;
    }

    .countdown-separator {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    /* Couple Extra Small */
    .couple-single-photo {
        max-width: 260px;
    }

    .couple-photo-large {
        border-radius: 150px 150px 25px 25px;
    }

    .couple-photo-large img {
        border-radius: 147px 147px 22px 22px;
    }

    .couple-name {
        font-size: 1.25rem;
    }

    .couple-role {
        letter-spacing: 1.2px;
    }

    .couple-parents {
        font-size: 0.9rem;
    }

    /* Event Extra Small */
    .event-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .event-info p {
        font-size: 0.88rem;
    }

    .map-frame iframe {
        min-height: 230px;
    }

    /* Gallery Extra Small */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Timeline Extra Small */
    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.88rem;
    }

    /* Nav Extra Small */
    .nav-link span {
        font-size: 0.55rem;
    }

    .nav-link i {
        font-size: 0.9rem;
    }

    /* Verse Extra Small */
    .verse-arabic {
        font-size: 1.15rem;
        line-height: 2;
    }

    .verse-translation {
        font-size: 0.88rem;
    }

    /* Notification */
    .notification {
        right: 10px;
        left: 10px;
        max-width: unset;
    }
}

/* ---- Scroll Animations ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
