/* =========================================
         1. VARIABLES & RESET (EMERALD THEME)
      ========================================= */
:root {
    /* Primary Dark (Background Utama - Deep Emerald) */
    --bg-dark: #0f2b23;
    /* Primary Light (Background Sekunder - Forest Green) */
    --bg-light: #1a3c32;
    /* Text Color (White/Cream for Dark BG) */
    --text-color: #f2f7f5;
    /* Accent Color (Pale Gold/Champagne) */
    --accent-color: #eaddcf;
    /* Card Background Dark */
    --card-bg-dark: #14332a;
    /* Card Background Light (Sage White) */
    --card-bg-light: #f4f8f6;
    /* Gold/Bronze Strong (Buttons/Borders) */
    --gold-bronze: #bf9b5f;

    /* Warna Teks Gelap (Untuk di atas background terang - Dark Green) */
    --text-theme-dark: #0a211a;
}

body {
    /* Background luar hp (Greyish Green) */
    background-color: #7d8c85;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* SOLUSI AMPUH */
.mobile-screen,
body,
html {
    overflow-x: hidden !important;
}

.mobile-screen {
    max-width: 420px;
    height: 100%;
    background: url("bg-emerald-editorial.png");
    background-size: cover;
    position: relative;
    overflow-y: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.mobile-screen::-webkit-scrollbar {
    display: none;
}
.allow-scroll {
    overflow-y: auto !important;
}

/* =========================================
         2. MODERN OPENING OVERLAY (EMERALD)
      ========================================= */
#opening-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    z-index: 9999;
    background-color: var(--bg-dark);
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.slide-up-fade {
    transform: translateY(-100%);
    pointer-events: none;
}
.opening-bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-image: url("https://images.unsplash.com/photo-1583939003579-730e3918a45a?q=80&w=1000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Filter sedikit hangat agar menyatu dengan hijau */
    filter: sepia(20%) contrast(100%) brightness(85%);
}
.opening-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient Emerald */
    background: linear-gradient(
        to bottom,
        rgba(15, 43, 35, 0.1) 0%,
        rgba(15, 43, 35, 0.9) 60%,
        rgba(15, 43, 35, 1) 90%
    );
    z-index: 2;
}
.opening-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
}
.opening-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
}
.wedding-tag {
    font-family: "Lora", serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 10px;
    line-height: 1.5;
}
.rotating-badge {
    width: 80px;
    height: 80px;
    position: relative;
    animation: spinSlow 12s linear infinite;
}
.rotating-badge svg {
    width: 100%;
    height: 100%;
}
.rotating-badge text {
    font-family: "Lora", serif;
    font-size: 11px;
    fill: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.opening-title {
    text-align: center;
    margin-top: -60px;
}
.names-modern {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    line-height: 0.9;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.names-modern span {
    display: block;
    font-size: 24px;
    font-family: "Lora", serif;
    font-style: normal;
    margin: 10px 0;
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 2px;
}
.opening-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}
.guest-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    width: 100%;
}
.guest-label {
    font-family: "Lora", serif;
    font-size: 11px;
    color: #d1e0da;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.guest-name {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}
.btn-modern-open {
    background-color: var(--accent-color);
    color: var(--text-theme-dark);
    width: 100%;
    padding: 16px 0;
    border-radius: 50px;
    border: none;
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}
.btn-modern-open::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: 0.5s;
}
.btn-modern-open:hover::after {
    left: 100%;
}
.btn-modern-open:active {
    transform: scale(0.96);
}

/* ANIMATIONS */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.fade-in-up {
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}

/* =========================================
         3. MAIN & CLOSING SECTIONS (EMERALD)
      ========================================= */
.editorial-container {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10;
    padding: 30px 20px;
}
.editorial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient Emerald */
    background: linear-gradient(180deg, #1a3c32 0%, #081a15 100%);
    z-index: 1;
}
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}
.editorial-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}
.editorial-top {
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(234, 221, 207, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.editorial-sup {
    font-family: "Lora", serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}
.editorial-date {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    color: #fff;
    font-style: italic;
}
.editorial-frame-wrapper {
    position: relative;
    width: 240px;
    height: 360px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.editorial-img-arch {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 120px 120px 0 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    /* Filter foto sedikit warm/natural */
    filter: contrast(105%) sepia(10%);
}
.editorial-border-arch {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    border-radius: 120px 120px 0 0;
    z-index: 1;
    opacity: 0.6;
}
.editorial-bottom {
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    width: 100%;
}
.editorial-names {
    font-family: "Playfair Display", serif;
    font-size: 58px;
    line-height: 0.85;
    color: #fff;
    font-style: italic;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.editorial-names span {
    display: block;
    font-size: 20px;
    font-family: "Lora", serif;
    font-style: normal;
    color: var(--accent-color);
    margin: 15px 0 10px 0;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
}
.editorial-location {
    margin-top: 15px;
    font-family: "Lora", serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding-top: 10px;
}
.closing-text-wrapper {
    text-align: center;
    margin-top: 20px;
}
.closing-headline {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.closing-sub {
    font-family: "Lora", serif;
    font-size: 13px;
    color: #e0e6ed;
    line-height: 1.6;
    padding: 0 30px;
    margin-bottom: 30px;
}

/* =========================================
         4. OTHER SECTIONS (EMERALD PALETTE)
      ========================================= */
.section-title-white {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    margin-bottom: 5px;
    color: #fff;
}
.section-subtitle-white {
    font-family: "Lora", serif;
    font-size: 11px;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.8;
    font-weight: 400;
    color: #d1e0da;
}

/* Gallery CSS */
.section-gallery {
    padding: 40px 15px 60px 15px;
}
.gallery-header-title {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 42px;
    color: var(--text-theme-dark);
    text-align: center;
    position: relative;
    z-index: 2;
}
#gallery-grid {
    display: flex;
    flex-direction: column;
    width: 100%; /* Pastikan container full */
}

#gallery-grid .row {
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%; /* Pastikan row full */
}

#gallery-grid .row a {
    display: block;
    height: 300px; /* Tinggi seragam */
    overflow: hidden;
    cursor: pointer;
    position: relative;
    padding: 0;
    border: none; /* Hilangkan border jika ingin benar-benar menempel */
    border-radius: 0; /* Hilangkan radius agar kotak sempurna dan menempel */
}

#gallery-grid .row a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

#gallery-grid .row a:hover img {
    transform: scale(1.05);
    z-index: 2; /* Agar saat zoom posisinya di atas */
}

/* --- PERBAIKAN LOGIKA KOLOM --- */

/* Hapus calc, gunakan 50% pas agar menempel */
.row.two a {
    width: 50%;
}

/* Untuk foto tunggal (sisa ganjil), pastikan lebar 100% */
.row.full a {
    width: 100%;
}

/* Cards */
.dark-rounded-card {
    background-color: var(--card-bg-dark);
    color: #fff;
    border-radius: 40px;
    padding: 40px 25px;
    margin: 20px 20px 40px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
        inset 10px 10px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Ar-Rum Section */
.section-ar-rum {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}
.invitation-card {
    position: relative;
    z-index: 1;
    background-color: #fff;
    width: 100%;
    border: 3px solid var(--text-theme-dark);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.text-section {
    padding: 35px 25px;
    text-align: center;
}
.verse-text {
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 13.5px;
    line-height: 1.7;
    color: #2c3e36;
    margin-bottom: 15px;
}
.surah-name {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-theme-dark);
}
.image-section {
    width: 100%;
    height: 480px;
    position: relative;
}
.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.image-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to top, rgba(15, 43, 35, 0.15), transparent);
}

/* Countdown */
.section-countdown {
    background-color: #1a3c32; /* Medium Emerald */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}
.countdown-card {
    background-color: white;
    border: 2px solid var(--gold-bronze);
    border-radius: 50px;
    padding: 40px 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.countdown-title {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 32px;
    color: var(--text-theme-dark);
    margin-bottom: 20px;
}
.date-display {
    font-family: "Lora", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-theme-dark);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.divider-line {
    font-weight: 300;
    font-size: 24px;
    color: var(--gold-bronze);
    position: relative;
    top: -2px;
}
.subtitle {
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 16px;
    color: #5d7e6d;
    margin-bottom: 30px;
    line-height: 1.4;
}
.timer-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.timer-box {
    background-color: var(--text-theme-dark);
    color: white;
    width: 60px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.timer-number {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 4px;
}
.timer-label {
    font-family: "Lora", serif;
    font-size: 10px;
    text-transform: capitalize;
    color: var(--accent-color);
}

/* Couple */
.section-couple {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}
.couple-content {
    position: relative;
    z-index: 1;
}
.intro-text {
    font-family: "Lora", serif;
    font-size: 13px;
    font-weight: 600;
    color: #3e3e3e;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 10px;
}
.profile-img-container {
    width: 130px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 4px solid var(--text-theme-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nick-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-style: italic;
    font-size: 32px;
    color: var(--text-theme-dark);
    margin-bottom: 5px;
}
.couple-name {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-theme-dark);
    margin: 0 auto 10px auto;
    padding: 0 10px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}
.parents-info {
    font-family: "Lora", serif;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    font-weight: 500;
}
.ampersand {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    color: var(--gold-bronze);
    margin: 30px 0;
    font-style: italic;
}

/* Event */
.section-event {
    padding: 40px 20px 60px 20px;
    position: relative;
}
.event-card-container {
    background-color: var(--card-bg-dark);
    color: #fff;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 80px 20px 60px 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
        inset 10px 10px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}
.event-title {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--accent-color);
}
.event-date-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.date-divider {
    height: 20px;
    width: 2px;
    background-color: var(--accent-color);
}
.event-time {
    font-family: "Lora", serif;
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.event-location-label {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--accent-color);
}
.event-address {
    font-family: "Lora", serif;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 10px;
    opacity: 0.9;
}
.btn-map {
    display: inline-block;
    background-color: #fff;
    color: var(--text-theme-dark);
    font-family: "Lora", serif;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.btn-map:hover {
    background-color: #e0e6ed;
    color: #000;
}
.event-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    color: var(--accent-color);
    opacity: 0.8;
}
.event-divider::before,
.event-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--accent-color);
    margin: 0 10px;
}
.divider-icon {
    font-size: 18px;
}

/* Story */
.section-story {
    padding: 40px 20px 80px 20px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}
.story-header-title {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 42px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}
.story-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.story-card {
    background-color: #fff;
    color: var(--bg-light);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
        inset 10px -10px 10px rgba(0, 0, 0, 0.5);
    text-align: left;
    position: relative;
}
.story-date {
    font-family: "Lora", serif;
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--gold-bronze);
    font-weight: 600;
}
.story-title {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.2;
}
.story-desc {
    font-family: "Lora", serif;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.9;
}
.timeline-connector {
    width: 2px;
    height: 40px;
    border-left: 2px dashed #fff;
    margin: 0 auto;
}

/* RSVP & Gift */
.section-rsvp-wish-gift {
    padding-bottom: 50px;
    position: relative;
    padding-top: 40px;
}
.custom-label {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: 15px;
    display: block;
}
.custom-input {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 10px 15px;
    font-family: "Lora", serif;
    font-size: 14px;
    color: #1b2a41;
    outline: none;
}
.custom-input:focus {
    border-color: var(--gold-bronze);
    box-shadow: 0 0 5px rgba(191, 160, 95, 0.3);
}
.btn-gold {
    background-color: var(--gold-bronze);
    color: #fff;
    border: none;
    width: 120px;
    padding: 10px;
    border-radius: 6px;
    font-family: "Lora", serif;
    font-weight: 700;
    margin-top: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}
.btn-gold:hover {
    background-color: #a38850;
}
.wish-item {
    background-color: #f8fafc;
    color: var(--text-theme-dark);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: left;
    border-left: 3px solid var(--gold-bronze);
}
.wish-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: "Lora", serif;
}
.wish-message {
    font-size: 13px;
    line-height: 1.4;
    font-family: "Lora", serif;
}
.wish-list-container {
    margin-top: 30px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}
.wish-list-container::-webkit-scrollbar {
    width: 4px;
}
.wish-list-container::-webkit-scrollbar-thumb {
    background-color: var(--gold-bronze);
    border-radius: 4px;
}
.bank-card {
    background: linear-gradient(135deg, #f0f2f5 0%, #d9dce0 100%);
    color: #333;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: "Lora", sans-serif;
    overflow: hidden;
}
.bank-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 60%
    );
    opacity: 0.5;
    pointer-events: none;
}
.chip-img {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffcc00, #ffdb4d);
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid #cfaa00;
}
.chip-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #cfaa00;
}
.chip-img::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #cfaa00;
}
.bank-logo-text {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 800;
    font-size: 18px;
    color: var(--text-theme-dark);
    font-style: italic;
}
.account-number {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-theme-dark);
}
.account-name {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    color: #333;
}
.btn-copy {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--text-theme-dark);
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn-copy:active {
    transform: scale(0.95);
}

/* Footer */
.footer-copyright {
    background-color: #0e513e; /* Darkest Emerald */
    padding: 20px 10px;
    padding-bottom: 90px;
    text-align: center;
    color: #fff;
    font-family: sans-serif;
    position: relative;
    z-index: 3;
}
.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--accent-color);
}
.footer-logo span {
    color: #fff;
}
.footer-text {
    font-size: 10px;
    color: #92a8a1;
    font-family: "Lora", serif;
}

/* Music & Nav */
.floating-nav {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 380px;
    background: rgba(20, 51, 42, 0.95); /* Deep Emerald Transparent */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 10px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.nav-item {
    color: #fff;
    font-size: 16px;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}
.nav-item.active {
    background-color: var(--gold-bronze);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(191, 160, 95, 0.4);
}
.music-box {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--bg-dark);
    border: 1px solid var(--gold-bronze);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 1001;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
@media (min-width: 425px) {
    .music-box {
        left: calc(50% - 190px);
    }
}
.music-box i {
    font-size: 18px;
    transition: all 0.3s ease;
}
.music-box.playing {
    animation: musicSpin 3s linear infinite;
    border-color: #fff;
    background: var(--gold-bronze);
}
@keyframes musicSpin {
    100% {
        transform: rotate(360deg);
    }
}
