* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c0c0c0;
    --gold-light: #e0e0e0;
    --silver: #d9e2ee;
    --ice: #f3f7ff;
    --dark: #000000;
    --dark-alt: #0d0d0d;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.12);
    --accent-glow: rgba(255, 255, 255, 0.14);
    --accent-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-muted: #aaaaaa;
}

html {
    scroll-behavior: smooth;
}

/* ══════════════════════════════════════════════
   BODY — Desktop: gray→black sides; center: phone
   ═════════════════════════════════════════════ */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right,
            #3a3a3a 0%,
            #111111 18%,
            #111111 82%,
            #3a3a3a 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* All direct children stay phone-width */
body>*:not(audio) {
    width: 100%;
    max-width: 430px;
}

/* ── Typography ── */
h1,
h2,
h3,
.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.text-center {
    text-align: center;
}

/* ══════════════════════════════════════════════
   COVER / HERO
   ═════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #010208 0%, #06090f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 430px;
    padding: 32px 0;
}

.hero::before,
.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(92%, 400px);
    padding: 36px 26px 32px;
    border-radius: 24px;
    background: rgba(5, 7, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}

.hero-content::before,
.hero-content::after {
    display: none;
}

.cover-exit {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

/* Hero text */
.subtitle {
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: rgba(235, 240, 250, 0.92);
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 4rem);
    color: #f7fbff;
    margin-bottom: 14px;
    line-height: 0.98;
    letter-spacing: 0.01em;
    text-shadow: none;
}

.date {
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(205, 215, 230, 0.82);
}

.hero-greeting {
    color: rgba(235, 240, 250, 0.86);
    font-size: 0.82rem;
    margin-bottom: 20px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    padding: 0 2px;
}

.open-btn {
    font-size: 0.95rem;
    padding: 14px 34px;
    letter-spacing: 0.9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(235, 240, 250, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.open-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(255, 255, 255, 0.08);
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 18px rgba(192, 192, 192, 0.25);
    }

    50% {
        box-shadow: 0 0 35px rgba(192, 192, 192, 0.55);
    }
}

/* ══════════════════════════════════════════════
   MAIN CONTENT GATE
   ═════════════════════════════════════════════ */
#main-content.hidden {
    display: none;
}

#main-content {
    width: 100%;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.content-enter {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ══════════════════════════════════════════════
   SECTIONS
   ═════════════════════════════════════════════ */
.section-dark,
.section-alt,
.section-black {
    padding: 64px 20px;
    width: 100%;
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.04);
}

#couple,
#countdown,
#location,
#gallery {
    padding: 24px 20px;
}

#rsvp,
#wishes,
#closing {
    padding: 24px 18px;
}

#tiktok {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    max-width: none !important;
    height: 100vh;
}

.section-dark {
    background: var(--dark);
}

.section-alt {
    background: #010208;
}

.section-alt .glass-card {
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), inset 0 0 1px rgba(255, 255, 255, 0.015);
}

.section-alt .btn-gold,
.section-alt .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(235, 240, 250, 0.92);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-alt .btn-gold:hover,
.section-alt .btn-outline:hover {
    background: rgba(255, 255, 255, 0.11);
    color: rgba(235, 240, 250, 0.94);
}

.container {
    width: 100%;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 2rem;
    color: #eef4ff;
    margin-bottom: 28px;
    text-align: center;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.section-lead {
    color: rgba(235, 240, 255, 0.82);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   GLASS CARD
   ═════════════════════════════════════════════ */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25), inset 0 0 1px rgba(255, 255, 255, 0.05);
}

.section-alt .glass-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), inset 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ══════════════════════════════════════════════
   QUOTE SECTION
   ═════════════════════════════════════════════ */
.section-black {
    background: #000000;
    padding: 80px 20px;
    width: 100%;
}

.quote-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.quote-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(245, 245, 255, 0.92);
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
}

.holy-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-style: italic;
    font-weight: 600;
    /* Makes it bolder */
    color: #ffffff;
    line-height: 1.7;
    margin: 0 auto;
    position: relative;
    max-width: 90%;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.16);
    /* Subtle glow for thickness */
}

/* Aesthetic large quotation marks */
.holy-quote::before,
.holy-quote::after {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(224, 228, 236, 0.22);
    font-size: 4.5rem;
    position: absolute;
    line-height: 1;
}

.holy-quote::before {
    content: '“';
    top: -25px;
    left: -20px;
}

.holy-quote::after {
    content: '”';
    bottom: -45px;
    right: -20px;
}

.quote-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    margin: 45px auto 35px;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.quote-blessing {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(235, 240, 255, 0.82);
    letter-spacing: 1px;
    max-width: 85%;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   THE COUPLE
   ═════════════════════════════════════════════ */
.couple-grid {
    display: flex;
    flex-direction: column;
    /* Stack as 2 precise sections */
    gap: 16px;
    justify-content: center;
    position: relative;
    padding-bottom: 8px;
}

/* Big elegant background ampersand between the stacked sections */
.couple-grid::after {
    content: '&';
    position: absolute;
    top: 50%;
    left: 80%;
    /* Placed on the right side */
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(192, 192, 192, 0.12);
    z-index: 0;
    pointer-events: none;
}

.profile-card {
    width: 100%;
    position: relative;
    text-align: left;
    padding: 0 !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: transparent !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
    z-index: 2;
}

/* Ensure no staggering */
.profile-card:nth-child(2) {
    margin-top: 0;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.avatar {
    width: 100%;
    height: 270px;
    /* Balanced size for full-screen mobile section */
    object-fit: cover;
    display: block;
    border-radius: 16px;
    margin-bottom: 0;
    filter: grayscale(15%) contrast(1.1);
    transition: transform 0.8s ease;
}

.profile-card:hover .avatar {
    transform: scale(1.05);
}

/* Gradient overlay to make text readable */
.profile-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    border-radius: 0 0 16px 16px;
    z-index: 1;
}

/* Ensure text stays above overlay */
.profile-card h3,
.profile-card p,
.profile-card .ig-link {
    position: absolute;
    left: 20px;
    z-index: 2;
    margin: 0;
}

.profile-card h3 {
    bottom: 50px;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.profile-card p {
    bottom: 28px;
    font-size: 0.76rem;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.profile-card .ig-link {
    bottom: 15px;
    font-size: 0.75rem;
    color: #fff;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-shadow: none;
}

.profile-card .ig-link:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}


/* ══════════════════════════════════════════════
   OUR DAY — Minimalist Editorial Layout
   ═════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   OUR DAY — Elegant Editorial Calendar Layout
   ═════════════════════════════════════════════ */
.our-day-card {
    padding: 24px 20px;
    text-align: center;
    border-radius: 24px;
    background: rgba(10, 14, 23, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
}

.our-day-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(192, 192, 192, 0.7);
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.our-day-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Luxury Date Frame styling */
.luxury-date-frame {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 24px auto 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.luxury-date-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    transform: rotate(45deg);
    z-index: -1;
    pointer-events: none;
    border-radius: 4px;
}

.luxury-date-frame::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    z-index: -1;
    pointer-events: none;
    border-radius: 4px;
}

.frame-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2px;
    margin-left: 4px;
    /* offset tracking */
    text-transform: uppercase;
    text-align: center;
}

.frame-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    margin: 2px 0;
    text-align: center;
}

.frame-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 3px;
    margin-bottom: 2px;
    text-align: center;
}

.frame-dayname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-align: center;
}

.countdown-card-modern {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 16px;
    width: 100%;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.countdown-card-modern:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.mc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
}

.mc-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(192, 192, 192, 0.5);
    text-transform: uppercase;
    margin-top: 4px;
}

.mc-divider {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    padding-bottom: 10px;
}

/* Event info modern layout */
.events-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-bottom: 16px;
}

.event-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.event-item-modern:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.event-icon {
    font-size: 1.15rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-text-modern h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.0rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.event-text-modern p.event-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: rgba(192, 192, 192, 0.7);
    margin: 0;
    letter-spacing: 0.5px;
}

.our-day-footer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(192, 192, 192, 0.5);
    margin: 8px 0 0;
    text-align: center;
}



.time-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 8px;
    border-radius: 16px;
    min-width: 85px;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(230, 235, 245, 0.96);
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.08), 0 10px 20px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 0.35;
}

.time-box span {
    display: block;
    font-size: 2.2rem;
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    margin-bottom: 2px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════ */
.btn {
    padding: 11px 26px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(192, 192, 192, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.btn-block {
    width: 100%;
    margin-top: 18px;
    text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* ══════════════════════════════════════════════
   DATE SHOWCASE (Our Day section)
   ═════════════════════════════════════════════ */
.date-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4px 0 16px;
    gap: 0;
    position: relative;
}

.ds-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: rgba(192, 192, 192, 0.5);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ds-day-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-day-wrap::before,
.ds-day-wrap::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15));
    margin: 0 12px;
}

.ds-day-wrap::after {
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.15));
}

.ds-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 0.9;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -2px;
}

.ds-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin: 6px 0 4px;
    box-shadow: 0 0 8px rgba(192, 192, 192, 0.3);
}

.ds-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ds-weekday {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 1px;
}

.ds-dot {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.ds-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(192, 192, 192, 0.45);
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   EVENTS GRID LAYOUT
   ═════════════════════════════════════════════ */
.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 18px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .event-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 100%;
    }
}

.event-card {
    padding: 12px 10px;
    position: relative;
    overflow: hidden;
}

.event-card h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
    font-weight: 600;
}

.event-date,
.event-time {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    font-weight: 400;
}

.event-date i,
.event-time i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px;
}

.event-date,
.event-time {
    font-size: 0.88rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.event-date i,
.event-time i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px;
}

.event-location {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 0.84rem;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   DATE INLINE ROW (Our Day section)
   ═════════════════════════════════════════════ */
.date-inline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 4px 0 22px;
    flex-wrap: nowrap;
}

.dir-month,
.dir-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(192, 192, 192, 0.65);
    text-transform: uppercase;
}

.dir-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.dir-dayname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 1.5px;
}

.dir-sep {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

.dir-divider {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.15);
    margin: 0 2px;
}

/* ══════════════════════════════════════════════
   LOCATION FULL BLEED MAP
   ═════════════════════════════════════════════ */
.location-fullbleed {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.location-header {
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px 20px;
    text-align: center;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.location-header h2 {
    margin-bottom: 10px;
}

.location-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.70em;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-address i {
    color: var(--gold);
    font-size: 0.85rem;
}

.map-container-fullbleed {
    flex: 1;
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    display: flex;
}

.map-container-fullbleed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 380px;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Location section: map fills remaining space */
#location {
    display: flex;
    flex-direction: column;
}

#location .container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#location .glass-card {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#location .map-container {
    flex: 1;
    height: auto;
    min-height: 300px;
    border-radius: 0;
}

/* ══════════════════════════════════════════════
   GALLERY
   ═════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 8px;
}

.gallery-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

/* ══════════════════════════════════════════════
   INSTAGRAM EMBED
   ═════════════════════════════════════════════ */
.ig-embed-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

/* ══════════════════════════════════════════════
   GLOBAL SCROLL-SNAP & ENTRANCE ANIMATIONS (Web Base & Mobile)
   ═════════════════════════════════════════════ */
html,
body {
    height: 100%;
    overflow: hidden;
    /* Prevent double scrollbars on desktop viewports */
}

/* Make main content the scroll container and snap by section */
#main-content {
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    /* Hide default scrollbar in Firefox */
}

#main-content::-webkit-scrollbar {
    display: none;
    /* Hide default scrollbar in Chrome/Safari/Edge */
}

/* Each direct section becomes a full-screen snap point */
#main-content>section {
    min-height: 100vh;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 18px;
    box-sizing: border-box;
}

/* TikTok section override: no padding */
#main-content>section#tiktok {
    padding: 0 !important;
    margin: 0 !important;
}

/* Location section: fullbleed map, no padding */
#main-content>section#location {
    justify-content: flex-start;
    padding: 0 !important;
}

#main-content>section#location .location-header {
    padding: 28px 20px 14px;
    flex-shrink: 0;
}

#main-content>section#location .map-container-fullbleed {
    flex: 1;
    min-height: 0;
}

#main-content>section#location .map-container-fullbleed iframe {
    height: 100%;
    min-height: 0;
}

/* Ensure inner containers use full width inside the snap sections */
#main-content .container {
    width: 100%;
}

/* Base animation state applied to sections - fade only (no transform to avoid jump) */
.section-anim {
    opacity: 0;
    transform: none;
    transition: opacity 650ms cubic-bezier(.2, .9, .2, 1);
    will-change: opacity;
}

.section-in.section-anim {
    opacity: 1;
    transform: none;
}

/* All animation types now use opacity-only smooth fade */
.anim-slide-up,
.anim-zoom,
.anim-fade,
.anim-count,
.anim-gallery,
.anim-video,
.anim-form {
    opacity: 0;
    transform: none;
}

.section-in.anim-slide-up,
.section-in.anim-zoom,
.section-in.anim-fade,
.section-in.anim-count,
.section-in.anim-gallery,
.section-in.anim-video,
.section-in.anim-form {
    opacity: 1;
    transform: none;
    transition-duration: 650ms;
}

/* Countdown: smooth fade for digits (no jump) */
.anim-count .time-box span {
    opacity: 0;
    transition: opacity 500ms cubic-bezier(.2, .9, .2, 1);
}

.section-in.anim-count .time-box span {
    opacity: 1;
}

/* Gallery: images fade in smoothly */
.anim-gallery .gallery-img {
    opacity: 0;
    transition: opacity 550ms ease;
}

.section-in.anim-gallery .gallery-img {
    opacity: 1;
}

/* TikTok video section: smooth fade */
.anim-video .video-section {
    opacity: 0;
    transition: opacity 650ms cubic-bezier(.2, .9, .2, 1);
}

.section-in.anim-video .video-section {
    opacity: 1;
}

/* RSVP: form fade in */
.anim-form .glass-card {
    opacity: 0;
    transition: opacity 600ms ease;
}

.section-in.anim-form .glass-card {
    opacity: 1;
}

/* Override Instagram's iframe border/background */
.ig-embed-wrap iframe {
    border-radius: 16px !important;
    background: #1a1a1a !important;
}

/* ══════════════════════════════════════════════
   RSVP FORM
   ═════════════════════════════════════════════ */
.rsvp-card-compact {
    padding: 24px !important;
}

.rsvp-form {
    text-align: left;
    margin-top: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rsvp-form input,
.rsvp-form textarea {
    width: 100%;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: border-color 0.3s, background 0.3s;
}

.attendance-group .attendance-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.attendance-options {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.attendance-option {
    flex: 1 1 0;
    min-width: 0;
}

.attendance-option input[type="radio"] {
    display: none;
}

.attendance-option label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 28px;
    padding: 4px 5px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    line-height: 1.0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    transition: all 0.25s ease;
}

.attendance-option input[type="radio"]:checked+label {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.12);
}

.rsvp-form input:focus,
.rsvp-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.09);
}

.btn-block {
    width: 100%;
    margin-top: 14px;
    text-align: center;
    padding: 10px 18px;
    font-size: 0.88rem;
}

/* ══════════════════════════════════════════════
   WISHES LIST
   ═════════════════════════════════════════════ */
.wishes-card-compact {
    padding: 18px !important;
    height: auto;
    max-height: 65vh;
    overflow: visible;
}

.wishes-container-compact {
    max-height: 55vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    -webkit-overflow-scrolling: touch;
}

.wishes-container-compact::-webkit-scrollbar {
    width: 5px;
}

.wishes-container-compact::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    margin: 2px;
}

.wishes-container-compact::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 4px;
    min-height: 40px;
}

.wishes-container-compact::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ══════════════════════════════════════════════
   CLOSING GRATITUDE
   ═════════════════════════════════════════════ */
.closing-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 28px 18px 8px !important;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.closing-section .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.closing-content {
    position: relative;
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.closing-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(245, 245, 255, 0.7);
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.closing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1;
    text-shadow: 0 2px 16px rgba(192, 192, 192, 0.2);
}

.closing-message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(235, 240, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.08);
}

.closing-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 28px auto;
    opacity: 0.8;
    box-shadow: 0 0 12px rgba(192, 192, 192, 0.3);
}

.closing-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 32px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(192, 192, 192, 0.2);
}

.closing-names p {
    margin: 0;
}

/* Animation for closing section - smooth fade */
#closing .closing-content {
    opacity: 0;
    transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

#closing.in-view .closing-content {
    opacity: 1;
}

/* ══════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════ */
footer {
    text-align: center;
    padding: 12px 20px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 430px;
    margin-top: auto;
    box-sizing: border-box;
}

footer p {
    color: rgba(192, 192, 192, 0.45);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin: 0;
}

/* ══════════════════════════════════════════════
   REVEAL ANIMATION
   ═════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   UTILITIES
   ═════════════════════════════════════════════ */
.mt-30 {
    margin-top: 28px;
}

/* ══════════════════════════════════════════════
   WISHES LIST
   ═════════════════════════════════════════════ */
.wishes-container {
    max-height: 340px;
    overflow-y: auto;
    padding-right: 6px;
}

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

.wishes-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
}

.wishes-container::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 4px;
}

.wish-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.wish-item h4 {
    color: var(--gold);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
}

.wish-item .badge {
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}

.wish-item .badge.hadir {
    background: rgba(76, 175, 80, 0.18);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.wish-item .badge.tidak-hadir {
    background: rgba(244, 67, 54, 0.18);
    color: #f44336;
    border: 1px solid #f44336;
}

.wish-item .date {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.wish-item p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text);
}

/* ══════════════════════════════════════════════
   GALLERY MODAL (LIGHTBOX)
   ═════════════════════════════════════════════ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2002;
    transition: background 0.25s ease, transform 0.25s ease;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.16);
}

.modal-prev {
    left: 14px;
}

.modal-next {
    right: 14px;
}

#modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--gold);
}

.modal-caption {
    margin-top: 20px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
}

/* ══════════════════════════════════════════════
   WEDDING GIFT - ATM CARD STYLE
   ═════════════════════════════════════════════ */
.gift-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered horizontally */
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

.atm-card {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1.8 / 1;
    border-radius: 14px;
    /* Reduced from 16px */
    padding: 14px;
    /* Reduced from 16px */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.atm-card:hover {
    transform: translateY(-4px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* BCA Gradient */
.bca-card {
    background: linear-gradient(135deg, #093c7f 0%, #001235 100%);
}

/* Mandiri Gradient */
.mandiri-card {
    background: linear-gradient(135deg, #1c4b8b 0%, #0c2046 100%);
}

/* Address Card Gradient - Rich gold/bronze */
.address-card {
    background: linear-gradient(135deg, #a6843c 0%, #463412 100%);
}

/* Card Header */
.atm-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ATM SIM Chip */
.atm-chip {
    width: 30px;
    /* Reduced from 38px */
    height: 22px;
    /* Reduced from 28px */
    background: linear-gradient(135deg, #ffe082 0%, #ffb300 100%);
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.atm-chip-silver {
    width: 30px;
    /* Reduced from 38px */
    height: 22px;
    /* Reduced from 28px */
    background: linear-gradient(135deg, #e0e0e0 0%, #9e9e9e 100%);
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Add chip card texture grid lines */
.atm-chip::after,
.atm-chip-silver::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    pointer-events: none;
}

.bank-logo-wrap {
    padding: 4px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.bank-logo-atm {
    height: 26px;
    object-fit: contain;
}

/* BCA logo needs larger size */
.bca-card .bank-logo-atm {
    height: 40px;
}

.gift-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    /* Reduced from 0.75rem */
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Card Body */
.atm-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 6px 0;
    width: 100%;
}

.card-number-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    /* Reduced from 0.55rem */
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 1px;
}

.card-number {
    font-family: 'Courier New', Courier, monospace;
    /* Classic card font style */
    font-size: 1.22rem;
    /* Reduced from 1.45rem */
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 1px 1.5px 2px rgba(0, 0, 0, 0.6);
    text-align: left;
}

.card-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    /* Reduced from 0.72rem */
    color: #ffffff;
    line-height: 1.35;
    text-align: left;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Card Footer */
.atm-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.card-holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-holder-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 1px;
}

.card-holder-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    /* Reduced from 0.82rem */
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

/* Copy Button for ATM */
.copy-btn-atm {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    color: #ffffff;
    width: 30px;
    /* Reduced from 36px */
    height: 30px;
    /* Reduced from 36px */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    /* Reduced from 0.95rem */
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.copy-btn-atm:hover {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: scale(1.08);
}

/* ══════════════════════════════════════════════
   DESKTOP PHONE SIMULATOR FRAME
   ═════════════════════════════════════════════ */
@media (min-width: 601px) {
    body {
        justify-content: center;
        padding: 24px 0;
        box-sizing: border-box;
    }

    #cover,
    #main-content {
        height: 85vh !important;
        max-height: 820px !important;
        min-height: 620px !important;
        border-radius: 24px;
        box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    #cover {
        overflow: hidden;
    }

    #main-content {
        overflow-y: auto !important;
    }

    #main-content>section {
        min-height: 100% !important;
        height: 100% !important;
    }
}