/* ===== CSS VARIABLES ===== */
:root {
    --color-cream: #EDE3D3;
    --color-ivory: #F8F3EA;
    --color-dark-brown: #1B2A4A;
    --color-gold: #D4AF37;
    --color-light-gold: #D4AF37;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Lato', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* overflow-x: clip does NOT create a new scroll container like hidden does,
       so body/window scrolling still works correctly on Android Chrome & iOS Safari */
    overflow-x: clip;
    overflow-y: auto;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-ivory);
    color: var(--color-dark-brown);
    line-height: 1.6;
    /* clip instead of hidden: prevents horizontal overflow without breaking
       the body as the primary scroll container on mobile browsers */
    overflow-x: clip;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling on all containers */
.couple-container,
.events-container,
.streaming-container,
.gift-container,
.wishes-container,
.gallery-grid {
    max-width: 100%;
    overflow: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes shimmer {
    0%, 100% {
        text-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(201, 169, 110, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SCROLL-TRIGGERED ANIMATIONS ===== */

/* Base fade-in on scroll */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Text fade-in animation */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sequential delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ===== PARALLAX SCROLL EFFECTS ===== */
/* Parallax is disabled (scroll snap removed). will-change removed to avoid
   unnecessary GPU compositing layers that hurt scroll performance on mobile. */

/* ===== OPENING ENVELOPE MODAL ===== */
.envelope-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 15% 15%, rgba(210, 195, 165, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(210, 195, 165, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 252, 245, 0.4) 0%, transparent 70%),
        linear-gradient(160deg, #f5ece0 0%, #f9f3e8 30%, #fdf8f0 55%, #f6ede0 80%, #f0e4d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in;
    overflow-y: auto;
    padding: 24px 0;
}

.envelope-modal.hidden {
    display: none;
}

/* Gold accent line on right side */
.envelope-modal::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #D4AF37 0%, #B8860B 50%, #D4AF37 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    pointer-events: none;
    z-index: 1;
}

/* Corner botanical decorations */
.modal-corner {
    position: absolute;
    width: 220px;
    height: 220px;
    pointer-events: none;
}

.corner-tl {
    top: -10px;
    left: -10px;
    background:
        radial-gradient(ellipse 60px 90px at 40px 30px, rgba(147, 130, 95, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 40px 70px at 70px 15px, rgba(120, 148, 110, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 55px 80px at 20px 70px, rgba(160, 140, 100, 0.4) 0%, transparent 65%),
        radial-gradient(ellipse 35px 60px at 90px 50px, rgba(180, 165, 125, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 25px 50px at 55px 90px, rgba(100, 130, 85, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 30px 40px at 110px 30px, rgba(190, 170, 130, 0.3) 0%, transparent 55%);
    transform: rotate(0deg);
}

.corner-tr {
    top: -10px;
    right: -10px;
    background:
        radial-gradient(ellipse 60px 90px at 180px 30px, rgba(147, 130, 95, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 40px 70px at 150px 15px, rgba(120, 148, 110, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 55px 80px at 200px 70px, rgba(160, 140, 100, 0.4) 0%, transparent 65%),
        radial-gradient(ellipse 35px 60px at 130px 50px, rgba(180, 165, 125, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 25px 50px at 165px 90px, rgba(100, 130, 85, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 30px 40px at 110px 30px, rgba(190, 170, 130, 0.3) 0%, transparent 55%);
}

.corner-bl {
    bottom: -10px;
    left: -10px;
    background:
        radial-gradient(ellipse 60px 90px at 40px 190px, rgba(147, 130, 95, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 40px 70px at 70px 205px, rgba(120, 148, 110, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 55px 80px at 20px 150px, rgba(160, 140, 100, 0.4) 0%, transparent 65%),
        radial-gradient(ellipse 35px 60px at 90px 170px, rgba(180, 165, 125, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 25px 50px at 55px 130px, rgba(100, 130, 85, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 30px 40px at 110px 190px, rgba(190, 170, 130, 0.3) 0%, transparent 55%);
}

.corner-br {
    bottom: -10px;
    right: -10px;
    background:
        radial-gradient(ellipse 60px 90px at 180px 190px, rgba(147, 130, 95, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 40px 70px at 150px 205px, rgba(120, 148, 110, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 55px 80px at 200px 150px, rgba(160, 140, 100, 0.4) 0%, transparent 65%),
        radial-gradient(ellipse 35px 60px at 130px 170px, rgba(180, 165, 125, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 25px 50px at 165px 130px, rgba(100, 130, 85, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 30px 40px at 110px 190px, rgba(190, 170, 130, 0.3) 0%, transparent 55%);
}

/* Central card */
.envelope-card {
    background: rgba(255, 253, 248, 0.88);
    border: 1.5px solid rgba(196, 162, 74, 0.35);
    border-radius: 20px;
    padding: 28px 24px 26px;
    width: 88%;
    max-width: 360px;
    text-align: center;
    box-shadow:
        0 8px 40px rgba(100, 80, 50, 0.12),
        0 2px 12px rgba(100, 80, 50, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

/* Square photo frame */
.envelope-photo-wrapper {
    width: min(240px, 62vw);
    height: min(240px, 62vw);
    margin: 0 auto 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid rgba(196, 162, 74, 0.5);
    box-shadow: 0 4px 20px rgba(100, 80, 50, 0.2);
}

.envelope-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Couple names inside card */
.envelope-couple-names {
    font-family: var(--font-script);
    font-size: 38px;
    color: #2c1a08;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    pointer-events: none;
}

.main-content.invitation-opened {
    visibility: visible;
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* Full-page scroll snap container - Premium Smooth Scroll */
.main-content.scroll-snap-enabled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    /* Disable native scroll-snap for custom smooth scroll */
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Enable GPU acceleration for smooth scrolling */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.main-content.scroll-snap-enabled::-webkit-scrollbar {
    display: none;
}

/* Hide original sections when scroll snap is active */
.main-content.scroll-snap-enabled > section {
    /* Remove scroll-snap for JS-controlled scrolling */
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    min-height: 100vh;
    height: 100vh;
    box-sizing: border-box;
    /* GPU acceleration for sections */
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Ensure all sections are 100vh - only when premium scroll-snap is active
   (desktop/tablet). On mobile this is skipped so tall content (event
   details, wishes list, etc.) is never clipped. See responsive.css. */
.main-content.scroll-snap-enabled .hero,
.main-content.scroll-snap-enabled .couple-profile,
.main-content.scroll-snap-enabled .event-details,
.main-content.scroll-snap-enabled .gallery-section,
.main-content.scroll-snap-enabled .send-wishes,
.main-content.scroll-snap-enabled .send-gift,
.main-content.scroll-snap-enabled .footer {
    height: 100vh;
    min-height: 100vh;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
}

.hero {
    height: 100vh;
    min-height: 100vh;
}

.envelope-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.envelope-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.envelope-modal h2 {
    font-family: var(--font-script);
    font-size: 48px;
    color: var(--color-ivory);
    margin-bottom: 15px;
    font-weight: 400;
}

.envelope-modal p {
    font-size: 16px;
    color: var(--color-light-gold);
    margin-bottom: 40px;
    opacity: 0.9;
}

.guest-name-display {
    font-family: var(--font-serif);
    font-size: 15px;
    color: #7a6550;
    margin-bottom: 24px;
    line-height: 1.7;
}

.guest-name-display span {
    font-family: var(--font-script);
    font-size: 28px;
    color: #8b6914;
    display: block;
    margin-top: 4px;
}

.open-btn {
    background-color: #8b6914;
    color: #fdf8f0;
    border: none;
    padding: 13px 32px;
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 16px rgba(139, 105, 20, 0.3);
}

.open-btn:hover {
    background-color: #6b4f0e;
    transform: scale(1.05);
    box-shadow: 0 6px 22px rgba(139, 105, 20, 0.45);
}

/* ===== STICKY NAVIGATION ===== */
.sticky-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 32, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px 50px 0 0;
    display: none;
    gap: 20px;
    z-index: 100;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}

.sticky-nav.visible {
    display: flex;
}

.nav-item {
    color: var(--color-gold);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-item:hover,
.nav-item.active {
    opacity: 1;
    transform: scale(1.2);
}

/* ===== MUSIC TOGGLE ===== */
.music-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    border: 2px solid var(--color-dark-brown);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    transition: var(--transition);
    font-size: 24px;
    color: var(--color-dark-brown);
}

.music-toggle.visible {
    display: flex;
}

.music-toggle:hover {
    transform: scale(1.1);
    background-color: var(--color-dark-brown);
    color: var(--color-gold);
}

.music-toggle.playing::after {
    animation: pulse 1s infinite;
}

/* ===== SECTION STYLES ===== */
section {
    min-height: auto;
    padding: 80px 20px;
    background-color: #EDE3D3;
    position: relative;
}

/* Batik pattern overlay for all sections */
section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(212, 162, 74, 0.12) 20px,
            rgba(212, 162, 74, 0.12) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(212, 162, 74, 0.12) 20px,
            rgba(212, 162, 74, 0.12) 21px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(212, 162, 74, 0.08) 15px,
            rgba(212, 162, 74, 0.08) 16px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 15px,
            rgba(212, 162, 74, 0.08) 15px,
            rgba(212, 162, 74, 0.08) 16px
        );
    z-index: 0;
    pointer-events: none;
}

section > * {
    position: relative;
    z-index: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    background-color: #1B2A4A;
    /* Allow vertical pan/scroll gestures to pass through to browser */
    touch-action: pan-y;
    z-index: 10;
    /* Ensure background covers everything */
    background-size: cover;
    background-position: center;
}

/* Javanese Batik Pattern Overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        /* Main batik geometric pattern */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(212, 162, 74, 0.12) 20px,
            rgba(212, 162, 74, 0.12) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(212, 162, 74, 0.12) 20px,
            rgba(212, 162, 74, 0.12) 21px
        ),
        /* Diagonal patterns */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(212, 162, 74, 0.08) 15px,
            rgba(212, 162, 74, 0.08) 16px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 15px,
            rgba(212, 162, 74, 0.08) 15px,
            rgba(212, 162, 74, 0.08) 16px
        ),
        /* Central medallion effect */
        radial-gradient(circle at 50% 50%, rgba(212, 162, 74, 0.15) 0%, transparent 50%),
        /* Corner accents */
        radial-gradient(circle at 15% 15%, rgba(212, 162, 74, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(212, 162, 74, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 15% 85%, rgba(212, 162, 74, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 85% 85%, rgba(212, 162, 74, 0.1) 0%, transparent 30%);
    z-index: 2;
    pointer-events: none;
}

/* Javanese decorative corners */
.hero::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 2px solid rgba(212, 162, 74, 0.25);
    border-radius: 10px;
    z-index: 2;
    pointer-events: none;
}

/* Javanese Decorations */
.javanese-decoration {
    position: absolute;
    font-size: 40px;
    color: var(--color-gold);
    opacity: 1;
    z-index: 3;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    user-select: none;
}

.javanese-decoration.top-left {
    top: 40px;
    left: 40px;
}

.javanese-decoration.top-right {
    top: 40px;
    right: 40px;
    transform: scaleX(-1);
}

.javanese-decoration.bottom-left {
    bottom: 40px;
    left: 40px;
    transform: scaleY(-1);
}

.javanese-decoration.bottom-right {
    bottom: 40px;
    right: 40px;
    transform: scaleX(-1) scaleY(-1);
}

.javanese-border {
    position: absolute;
    inset: 30px;
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

/* Default hide decorations on small screens - shown via responsive.css */
@media (max-width: 480px) {
    .javanese-decoration {
        font-size: 18px;
    }

    .javanese-decoration.top-left {
        top: 15px;
        left: 10px;
    }

    .javanese-decoration.top-right {
        top: 15px;
        right: 10px;
    }

    .javanese-decoration.bottom-left {
        bottom: 90px;
        left: 10px;
    }

    .javanese-decoration.bottom-right {
        bottom: 90px;
        right: 10px;
    }

    .javanese-border {
        inset: 15px;
    }
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Prevent image from intercepting touch/drag events */
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    /* Ken Burns Effect - smooth continuous zoom */
    animation: kenBurnsZoom 20s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-2%, -1%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 20, 0.45) 0%,
        rgba(10, 10, 20, 0.3) 50%,
        rgba(10, 10, 20, 0.45) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.couple-names {
    font-family: var(--font-script);
    font-size: clamp(26px, 7vw, 42px);
    color: var(--color-gold);
    margin: 20px 0;
    animation: shimmer 4s ease-in-out infinite;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    position: relative;
}

/* Javanese decorative ornaments around names */
.couple-names::before,
.couple-names::after {
    content: '❧';
    position: absolute;
    color: var(--color-gold);
    font-size: 24px;
    opacity: 0.6;
}

.couple-names::before {
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.couple-names::after {
    right: 5px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
}

@media (min-width: 768px) {
    .couple-names {
        font-size: clamp(32px, 8vw, 52px);
    }
}

.couple-names span {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(20px, 5vw, 30px);
    color: #fff;
    margin: 5px 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.7);
}

.wedding-date-text {
    font-family: var(--font-serif);
    font-size: clamp(13px, 3.5vw, 18px);
    color: var(--color-light-gold);
    margin: 20px 0;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    display: inline-block;
}

@media (min-width: 768px) {
    .wedding-date-text {
        background: rgba(0, 0, 0, 0.3);
        padding: 10px 20px;
        display: block;
    }
}

/* ===== COUNTDOWN TIMER ===== */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.9), rgba(36, 56, 96, 0.9));
    padding: 25px 20px;
    border-radius: 15px;
    border: 2px solid var(--color-gold);
    min-width: 70px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f, var(--color-gold));
}

.countdown-value {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-gold);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(212, 162, 74, 0.5);
}

.countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 10px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.countdown-ended {
    font-family: var(--font-script);
    font-size: clamp(24px, 5vw, 36px);
    color: var(--color-gold);
    text-align: center;
    padding: 20px;
    animation: shimmer 2s ease-in-out infinite;
}

.cta-button {
    background-color: var(--color-gold);
    color: #1B2A4A;
    border: 2px solid var(--color-gold);
    padding: 16px 50px;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cta-button:hover {
    background-color: #1B2A4A;
    color: var(--color-gold);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.cta-button.outlined {
    background-color: transparent;
    color: var(--color-dark-brown);
    border: 2px solid var(--color-gold);
}

.cta-button.outlined:hover {
    background-color: var(--color-gold);
    color: var(--color-ivory);
}

/* ===== COUPLE PROFILE SECTION ===== */
.couple-profile {
    background-color: var(--color-ivory);
    padding: 80px 20px;
}

.section-title {
    font-family: var(--font-script);
    font-size: 48px;
    text-align: center;
    color: var(--color-dark-brown);
    margin-bottom: 80px;
    font-weight: 400;
}

.couple-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    /* Prevent overflow */
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .couple-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }

    .profile-card {
        animation: none;
    }
}

.profile-card {
    text-align: center;
    animation: slideInLeft 1s ease-out;
}

.profile-card:nth-child(2) {
    animation: slideInRight 1s ease-out;
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 30px;
    border: 5px solid var(--color-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

/* iPhone Safari fix for profile photos */
@supports (-webkit-touch-callout: none) {
    .profile-photo {
        -webkit-border-radius: 50%;
        border-radius: 50%;
        /* Force GPU rendering on iOS */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Profile card overflow fix for iOS */
    .profile-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Ensure profile cards don't overflow on mobile */
@media (max-width: 480px) {
    .profile-card {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .profile-name {
        font-size: 20px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .social-handle {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .profile-photo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .profile-photo {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 375px) {
    .profile-photo {
        width: 140px;
        height: 140px;
    }
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--color-dark-brown);
    margin-bottom: 10px;
    font-weight: 600;
}

.profile-info {
    font-size: 14px;
    color: var(--color-dark-brown);
    opacity: 0.7;
    margin: 15px 0;
    line-height: 1.8;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .profile-info {
        font-size: 13px;
        line-height: 1.7;
        padding: 0 10px;
    }

    .profile-name {
        font-size: 24px;
    }
}

.social-handle {
    color: var(--color-gold);
    font-weight: 600;
    margin-top: 15px;
}

.divider {
    text-align: center;
    margin: 60px 0;
    position: relative;
}

.divider::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--color-gold);
    margin-bottom: 15px;
}

.divider::after {
    content: '❖';
    font-size: 24px;
    color: var(--color-gold);
    position: relative;
    top: -20px;
}

/* ===== EVENT DETAILS SECTION ===== */
.event-details {
    background-color: var(--color-cream);
    padding: 80px 20px;
}

.events-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .events-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
}

.event-card {
    background-color: var(--color-dark-brown);
    color: var(--color-ivory);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
    /* Ensure card doesn't overflow on mobile */
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .event-card {
        padding: 30px 20px;
    }

    .event-title {
        font-size: 22px;
    }

    .event-time {
        font-size: 20px;
    }

    .event-info {
        font-size: 14px;
    }
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f, var(--color-gold));
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.3);
}

.event-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.event-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.event-date-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), #f4d03f);
    color: var(--color-dark-brown);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.event-time {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-ivory);
    margin: 10px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.event-time::before {
    content: '🕐';
    font-size: 20px;
}

.event-info {
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0;
    opacity: 0.9;
}

.event-info strong {
    color: var(--color-gold);
}

.maps-button {
    background-color: var(--color-gold);
    color: var(--color-dark-brown);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    font-family: var(--font-sans);
}

.maps-button:hover {
    transform: scale(1.05);
    background-color: var(--color-light-gold);
}

/* ===== LIVE STREAMING SECTION ===== */
.live-streaming {
    background-color: var(--color-ivory);
    padding: 80px 20px;
}

.streaming-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.streaming-content {
    animation: slideInRight 1s ease-out;
}

.streaming-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--color-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease-out;
}

.streaming-title {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
}

.streaming-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-dark-brown);
    margin-bottom: 30px;
}

/* ===== INSTAGRAM FILTER SECTION ===== */
.instagram-filter {
    background-color: var(--color-cream);
    padding: 80px 20px;
}

.filter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.filter-title {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
}

.filter-text {
    font-size: 16px;
    color: var(--color-dark-brown);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background-color: var(--color-ivory);
    padding: 60px 16px;
    position: relative;
    z-index: 10;
}

.gallery-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--color-dark-brown);
    margin-top: -30px;
    margin-bottom: 40px;
    font-family: var(--font-serif);
    opacity: 0.85;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 8px rgba(27, 42, 74, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 42, 74, 0.18);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 42, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 24px;
    color: var(--color-ivory);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0f1a;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 95%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 32px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-close:hover {
    background: var(--color-gold);
    color: var(--color-dark-brown);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #fff;
    background: rgba(196, 162, 74, 0.3);
    border: none;
    cursor: pointer;
    padding: 16px 12px;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.lightbox-prev {
    left: 8px;
}

.lightbox-next {
    right: 8px;
}

.lightbox-nav:hover {
    background: var(--color-gold);
    color: var(--color-dark-brown);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 14px;
    background: rgba(27, 42, 74, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
}

/* ===== SEND GIFT SECTION ===== */
.send-gift {
    background-color: var(--color-dark-brown);
    color: var(--color-ivory);
    padding: 80px 20px;
}

.gift-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.gift-message {
    animation: slideInLeft 1s ease-out;
}

.gift-details {
    animation: slideInRight 1s ease-out;
}

.send-gift .section-title {
    color: var(--color-gold);
    text-align: left;
    margin-bottom: 30px;
}

.gift-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.gift-method-selector {
    background-color: #ffffff;
    border: 2px solid var(--color-gold);
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--color-dark-brown);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 30px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231b4d3e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.gift-method-selector:hover {
    border-color: var(--color-dark-brown);
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.3);
}

.gift-method-selector:focus {
    outline: none;
    border-color: var(--color-dark-brown);
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.5);
}

.gift-method-selector option {
    background-color: #ffffff;
    color: var(--color-dark-brown);
    padding: 12px;
}

.bank-details {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    max-width: 100%;
    overflow: hidden;
}

.bank-value {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-dark-brown);
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 480px) {
    .bank-details {
        padding: 18px 15px;
    }

    .bank-value {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .copy-btn {
        align-self: flex-start;
    }
}

.qris-code {
    text-align: center;
    padding: 10px 0;
}

.bank-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-logo img {
    height: 24px;
    width: auto;
}

.bank-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.bank-value {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-dark-brown);
}

.bank-value:hover {
    color: var(--color-gold);
}

.copy-btn {
    background-color: var(--color-gold);
    color: var(--color-dark-brown);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.copy-btn:hover {
    transform: scale(1.05);
    background-color: var(--color-light-gold);
}

.copy-btn.copied {
    background-color: #4CAF50;
}

/* ===== SEND WISHES SECTION ===== */
.send-wishes {
    background-color: var(--color-ivory);
    padding: 80px 20px;
}

.wishes-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
    align-items: stretch;
}

.wishes-form {
    background-color: var(--color-cream);
    padding: 35px;
    border-radius: 15px;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    flex-direction: column;
}

.wishes-form .section-title {
    font-family: var(--font-script);
    font-size: 36px;
    text-align: center;
    color: var(--color-dark-brown);
    margin-bottom: 30px;
    font-weight: 400;
}

.wishes-form form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wishes-form .form-button {
    margin-top: auto;
}

.wishes-list-container {
    background-color: var(--color-cream);
    padding: 35px;
    border-radius: 15px;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

.wishes-list-header {
    font-family: var(--font-script);
    font-size: 36px;
    text-align: center;
    color: var(--color-dark-brown);
    margin-bottom: 25px;
    font-weight: 400;
    flex-shrink: 0;
}

.wishes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding-right: 8px;
    flex: 1;
    min-height: 0;
}

/* Custom scrollbar for wishes list */
.wishes-list {
    scroll-behavior: smooth;
}

.wishes-list::-webkit-scrollbar {
    width: 6px;
}

.wishes-list::-webkit-scrollbar-track {
    background: rgba(201, 169, 110, 0.15);
    border-radius: 3px;
}

.wishes-list::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.wishes-list::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-brown);
}

/* Firefox scrollbar */
.wishes-list {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(201, 169, 110, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark-brown);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(201, 169, 110, 0.4);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 14px;
    background-color: var(--color-ivory);
    color: var(--color-dark-brown);
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(27, 42, 74, 0.4);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-button {
    background-color: var(--color-gold);
    color: var(--color-ivory);
    border: none;
    padding: 14px 40px;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 10px;
}

.form-button:hover {
    background-color: var(--color-dark-brown);
    color: var(--color-gold);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
}

.wishes-list {
    display: grid;
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
    padding: 10px;
}

.wish-card {
    background-color: white;
    padding: 24px 28px;
    border-radius: 16px;
    animation: fadeInUp 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.wish-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.wish-header {
    margin-bottom: 16px;
}

.wish-name {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-dark-brown);
    font-size: 18px;
    display: block;
    letter-spacing: 0.3px;
}

.wish-divider {
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-light-gold), var(--color-gold));
    margin: 14px 0 16px;
    border-radius: 1px;
}

.wish-message {
    color: var(--color-dark-brown);
    font-size: 14px;
    line-height: 1.85;
    opacity: 0.88;
}

/* ===== FOOTER SECTION ===== */
.footer {
    background-color: var(--color-cream);
    padding: 80px 20px 150px;
    text-align: center;
}

.footer-thank-you {
    font-family: var(--font-script);
    font-size: 48px;
    color: var(--color-dark-brown);
    margin-bottom: 30px;
    font-weight: 400;
}

.footer-couple-names {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-decoration {
    font-size: 36px;
    margin: 30px 0;
}

.footer-hashtag {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-dark-brown);
    margin-bottom: 40px;
    font-weight: 600;
}

.footer-quran-quote {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--color-dark-brown);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-quran-ref {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 40px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--color-gold);
    background-color: var(--color-ivory);
    color: var(--color-dark-brown);
}

.share-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-ivory);
    transform: scale(1.1);
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-ivory);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-brown);
}
