/* CUSTOM PREMIUM URBAN Y2K, CYBER-TRAP & GUCCI COLLAB DESIGN SYSTEM - BIANCA 15 */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typewriter Typing Effect */
.typing-effect {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--color-primary); /* Cursor */
    width: 0;
    animation: 
        typing 2.5s steps(11, end) 1s forwards, 
        blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--color-primary); }
}

/* Typography Custom Styles */
.title-font {
    font-family: var(--font-title);
    letter-spacing: 1px;
}

.script-font, .brush-font {
    font-family: var(--font-title);
    color: var(--color-primary);
    letter-spacing: 2px;
}

/* Analog VHS / Camcorder Retro Video Filter */
.vhs-cam-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Let clicks pass through */
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(0, 255, 255, 0.5);
    padding: 30px;
    box-sizing: border-box;
}

.vhs-left-top {
    position: absolute;
    top: 30px;
    left: 30px;
}

.vhs-right-top {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--color-secondary); /* LED Green */
    text-shadow: 0 0 5px var(--color-secondary);
}

.vhs-left-bottom {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.vhs-right-bottom {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

/* Blinking dot for REC */
.animate-pulse {
    animation: blinkRed 1s infinite alternate;
}

@keyframes blinkRed {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Y2K Street Sticker monogram badge */
.y2k-sticker-monogram {
    transform: rotate(-3deg);
    background-color: #000000;
    border: 3px solid var(--color-secondary); /* LED Green */
    padding: 8px 20px;
    margin-top: 25px; /* Added spacing from the top of the viewport */
    box-shadow: 0 0 15px var(--color-secondary);
    display: inline-block;
    transition: transform 0.3s;
}

.y2k-sticker-monogram:hover {
    transform: rotate(3deg) scale(1.05);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
}

.y2k-sticker-text {
    font-family: 'Bungee', sans-serif;
    color: #FFFFFF;
    font-size: 1.4rem;
    text-shadow: 0 0 4px var(--color-secondary);
}

/* High-Fidelity SPOTIFY MUSIC PLAYER FRAME */
.spotify-player-card {
    width: 100%;
    max-width: 360px;
    background: rgba(12, 12, 18, 0.95); /* Deep Charcoal */
    border: 3px solid var(--color-primary); /* LED Fuchsia */
    border-radius: 0px; /* Sharp Y2K corners */
    padding: 22px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.35);
    transition: all 0.3s ease;
    text-align: left;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.spotify-player-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 35px rgba(57, 255, 20, 0.45);
}

.player-art-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 0px;
    border: 2px solid #222;
    background-color: #000000;
}

.player-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
}

/* Progress track (mimicks August 29 date!) */
.player-progress-track {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.player-progress-bar {
    height: 100%;
    background-color: var(--color-primary); /* Fuchsia */
    box-shadow: 0 0 10px var(--color-primary);
}

.player-btn {
    background: transparent;
    border: none;
    color: #FFFFFF;
    opacity: 0.65;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    opacity: 1;
    color: var(--color-secondary); /* LED Green */
    transform: scale(1.1);
}

.player-btn.btn-play-main {
    opacity: 1;
    color: var(--color-primary);
    text-shadow: 0 0 10px var(--color-primary);
    font-size: 2.8rem;
}

.player-btn.btn-play-main:hover {
    color: var(--color-secondary);
    text-shadow: 0 0 15px var(--color-secondary);
}

/* Dark Hero Banner */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    filter: brightness(0.3) contrast(1.15) grayscale(0.2); /* Stark high-contrast camera style */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(8, 8, 12, 1) 100%);
    z-index: -1;
}

.hero-content {
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
    padding-top: 110px; /* Pushed down to prevent clipping at the top */
    z-index: 1;
}

/* Cyber Glassmorphic Cards with Triple LED glows */
.glass-card {
    background: rgba(14, 14, 20, 0.92); /* Stark Charcoal Black */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0px; /* Sharp corners Y2K */
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 3px solid #222;
}

/* 🟥 LED PINK (Fucsia) Card */
.card-led-pink {
    border-color: #FF00FF; /* Fuchsia */
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.25);
}

.card-led-pink:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.6);
    border-color: #FF66FF;
}

.card-led-pink i {
    color: #FF00FF;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

/* 🟩 LED GREEN (Neón) Card */
.card-led-green {
    border-color: #39FF14; /* LED Green */
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.25);
}

.card-led-green:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(57, 255, 20, 0.6);
    border-color: #66FF66;
}

.card-led-green i {
    color: #39FF14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
}

/* 🟦 LED BLUE (Violeta/Azul Eléctrico) Card */
.card-led-blue {
    border-color: #0070FF; /* LED Blue */
    box-shadow: 0 0 20px rgba(0, 112, 255, 0.25);
}

.card-led-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(0, 112, 255, 0.6);
    border-color: #00FFFF; /* Cyan glow */
}

.card-led-blue i {
    color: #0070FF;
    text-shadow: 0 0 10px rgba(0, 112, 255, 0.6);
}

/* Neon Countdown Box */
.countdown-box {
    background: rgba(8, 8, 12, 0.95);
    border-radius: 0px;
    padding: 15px 5px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.15);
    min-width: 80px;
    text-align: center;
    flex: 1;
    margin: 5px;
    border: 2px solid var(--color-primary);
    transition: all 0.3s;
}

.countdown-box:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.35);
    transform: scale(1.05);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.font-countdown {
    font-family: 'Cinzel', serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Razored Section Divider */
.section-title-container {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-family: 'Permanent Marker', cursive;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.25);
}

.title-divider {
    width: 120px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 15px auto 0 auto;
    position: relative;
    box-shadow: 0 0 10px var(--color-primary);
}

.title-divider::after {
    content: "⚡"; /* Retro energy ray */
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-bg);
    padding: 0 10px;
    color: var(--color-secondary);
    font-size: 16px;
}

/* Neon Floating Audio Player */
/* Neon Floating Audio Player - Positioned at Top Right */
.audio-player-floating {
    position: fixed;
    top: 25px;
    right: 120px;
    z-index: 1100; /* Stays above video overlay */
}

.music-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(15, 15, 21, 0.9);
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.music-btn:hover {
    transform: scale(1.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.6);
}

.music-btn i {
    font-size: 1.4rem;
    color: var(--color-primary);
    text-shadow: 0 0 8px var(--color-primary);
}

/* Sound waves */
.waves-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.wave {
    position: absolute;
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: soundWave 2s infinite linear;
    opacity: 0;
}

/* Street-Sticker buttons */
.btn-premium {
    background-color: var(--color-primary); /* LED Fuchsia */
    color: #ffffff;
    font-family: 'Bungee', sans-serif;
    font-size: 1rem;
    padding: 15px 35px;
    border-radius: 0px;
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    transition: all 0.2s ease;
}

.btn-premium:hover, .btn-premium:focus {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
    transform: scale(1.02);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--color-secondary); /* LED Green */
    font-family: 'Bungee', sans-serif;
    font-size: 1rem;
    padding: 15px 35px;
    border-radius: 0px;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
    transition: all 0.2s ease;
}

.btn-premium-outline:hover {
    background-color: var(--color-secondary);
    color: #08080C;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
    transform: scale(1.02);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    left: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
}

/* Gallery Neon Grid */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    background-color: #111;
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 260px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.5);
    transform: translateY(-3px);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 255, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Stark Polaroid card (Y2K Sticker style) */
.polaroid-card {
    background-color: #121218;
    padding: 15px 15px 25px 15px;
    border-radius: 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    transition: all 0.3s;
    border: 3px solid var(--color-primary);
    margin-bottom: 25px;
}

.polaroid-card:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid-card:hover {
    transform: scale(1.05) rotate(0deg);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
    z-index: 10;
}

.polaroid-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
    filter: contrast(1.05);
}

.polaroid-caption {
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.polaroid-author {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 10px;
    text-align: right;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.3);
}

/* Monospaced Message Bubble */
.message-bubble {
    background-color: #121216;
    border-left: 5px solid var(--color-primary);
    border-radius: 0px;
    padding: 25px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s;
}

.message-bubble:hover {
    transform: translateX(6px);
    border-color: var(--color-secondary);
    border-left-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

/* Stark Form inputs */
.form-premium .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary); /* LED Green */
}

.form-premium .form-control, .form-premium .form-select {
    border-radius: 0px; /* Angulares Y2K */
    padding: 14px 18px;
    border: 2px solid rgba(255, 0, 255, 0.3);
    background-color: #0b0b0e;
    color: #FFFFFF;
    transition: all 0.3s;
}

.form-premium .form-control:focus, .form-premium .form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    background-color: #121218;
    color: #FFFFFF;
}

/* Acordeon Regalos (Dark/Neon trims) */
.accordion-premium .accordion-item {
    border: 3px solid rgba(255, 0, 255, 0.4);
    border-radius: 0px !important;
    overflow: hidden;
    background: #0f0f14;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.accordion-premium .accordion-button {
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Bungee', sans-serif;
    padding: 20px;
}

.accordion-premium .accordion-button:not(.collapsed) {
    background-color: rgba(255, 0, 255, 0.15);
    color: var(--color-primary);
    box-shadow: none;
}

.accordion-premium .accordion-button::after {
    filter: invert(1);
}

/* Global Dynamic Sections */
.bg-dark-section {
    background-color: var(--color-bg) !important;
}

.bg-white {
    background-color: var(--color-bg) !important;
}

section {
    background-color: var(--color-bg) !important;
}

#rsvp {
    background-color: var(--color-bg) !important;
}

/* Animations keyframes */
@keyframes soundWave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

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

@keyframes glitchIn {
    0% {
        opacity: 0;
        transform: scale(0.9) skewX(-10deg);
    }
    50% {
        opacity: 0.5;
        transform: skewX(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) skewX(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.8rem;
    }
    .hero-subtitle {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    .glass-card {
        padding: 30px 15px;
    }
    
    /* Responsive Overrides to prevent overlapping on mobile viewports */
    .hero-content {
        padding-top: 45px !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .y2k-sticker-monogram {
        padding: 4px 12px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .y2k-sticker-text {
        font-size: 1.1rem !important;
    }
    
    .spotify-player-card {
        max-width: 100% !important;
        padding: 15px 12px !important;
        border-width: 2px !important;
    }
    
    .player-track-info {
        margin-bottom: 8px !important;
    }
    
    .player-track-title {
        font-size: 1.1rem !important;
    }
    
    .player-track-artist {
        font-size: 0.80rem !important;
    }
    
    /* Single-row Y2K digital countdown cells */
    .countdown-box {
        min-width: 55px !important;
        padding: 10px 2px !important;
        margin: 3px !important;
        border-width: 1.5px !important;
    }
    
    .countdown-value {
        font-size: 1.6rem !important;
    }
    
    .countdown-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Action Buttons sizing */
    .btn-premium, .btn-premium-outline {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        border-width: 2px !important;
    }
    
    /* RSVP Buttons mobile responsive sizing to fit 320px screens perfectly */
    #attending-yes + label, #attending-no + label {
        min-width: 105px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
    }
    
    /* Gap reduction for RSVP buttons */
    .col-12.my-3 .d-flex.justify-content-center {
        gap: 12px !important;
    }
    
    /* Decrease padding inside the glass cards on mobile to maximize space */
    .glass-card {
        padding: 25px 12px !important;
    }
    
    /* Section headers responsive adjustments to prevent horizontal text clipping */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .section-subtitle {
        font-size: 1.1rem !important;
    }
    
    .section-title-container {
        margin-bottom: 30px !important;
    }
    
    /* Floating controls mobile repositioning */
    .audio-player-floating {
        top: 15px !important;
        right: 15px !important;
    }
    
    .music-btn {
        width: 42px !important;
        height: 42px !important;
        border-width: 2px !important;
    }
    
    .music-btn i {
        font-size: 1.1rem !important;
    }
    
    /* WhatsApp Floating Button - Compact & bottom-right for clean UX */
    .whatsapp-float {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.3rem !important;
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4) !important;
    }
    
    /* VHS Cam Overlay adjustments */
    .vhs-cam-overlay {
        padding: 15px !important;
    }
    
    .vhs-left-top {
        top: 15px !important;
        left: 15px !important;
    }
    
    .vhs-right-top {
        display: none !important; /* Hides top-right PLAY text to avoid overlapping the volume button */
    }
    
    .vhs-left-bottom {
        bottom: 15px !important;
        left: 15px !important;
        font-size: 0.7rem !important;
    }
    
    .vhs-right-bottom {
        bottom: 15px !important;
        right: 15px !important;
        font-size: 0.7rem !important;
    }
}

/* ==========================================================================
   CYBER-DEVICES SLIDESHOW FRAMEWORK (TIKTOK LIVE, TV RETRO, GAMEBOY, ETC)
   ========================================================================== */

/* Glitch static screen overlay */
.tv-static-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 8;
    pointer-events: none;
    transition: background 0.1s ease;
}

.tv-static-effect.active-glitch {
    background: repeating-radial-gradient(circle, #222 0%, #000 50%, #444 100%);
    background-size: 4px 4px;
    opacity: 0.9;
    animation: staticNoise 0.15s infinite;
}

@keyframes staticNoise {
    0% { background-position: 0 0; }
    50% { background-position: 2px 4px; }
    100% { background-position: -1px -2px; }
}

/* Device Overlay Base Class */
.device-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    display: none;
    box-sizing: border-box;
    color: #FFFFFF;
    overflow: hidden;
}

/* 1. TIKTOK LIVE CELLPHONE OVERLAY */
.device-overlay[data-device="tiktok"] {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
}

.tiktok-live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(254, 44, 85, 0.9); /* TikTok Red */
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 0.5px;
    text-shadow: 0 0 4px rgba(254, 44, 85, 0.8);
    font-family: 'Space Mono', monospace;
}

.tiktok-live-audience {
    position: absolute;
    top: 15px;
    left: 85px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
    font-family: 'Space Mono', monospace;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tiktok-comments-container {
    position: absolute;
    bottom: 80px;
    left: 15px;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    z-index: 9;
}

.tiktok-comment {
    font-size: 0.58rem;
    background: rgba(0, 0, 0, 0.45);
    padding: 4px 8px;
    border-radius: 6px;
    color: #FFFFFF;
    line-height: 1.2;
    word-break: break-word;
    border-left: 2px solid var(--color-primary);
}

.tiktok-comment strong {
    color: var(--color-secondary); /* Neon Green */
}

.tiktok-action-icons {
    position: absolute;
    right: 12px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9;
}

.tiktok-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tiktok-icon-btn i {
    font-size: 1rem;
    color: #FFFFFF;
}

.tiktok-icon-btn span {
    font-size: 0.45rem;
    margin-top: 1px;
    color: #E0E0E0;
    font-weight: 700;
}

.tiktok-user-info {
    position: absolute;
    bottom: 12px;
    left: 15px;
    right: 15px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    text-align: left;
    z-index: 9;
}

.tiktok-user-info strong {
    color: var(--color-primary); /* Fuchsia */
    font-size: 0.72rem;
    font-family: 'Space Mono', monospace;
}

.tiktok-user-info p {
    font-size: 0.58rem;
    color: #F5F5FA;
    margin: 2px 0 0 0;
    line-height: 1.3;
}


/* 2. Y2K RETRO TV OVERLAY */
.device-overlay[data-device="tv"] {
    background: radial-gradient(circle, transparent 65%, rgba(0,0,0,0.6) 100%);
}

.tv-channel {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: var(--color-secondary); /* Neon Green */
    text-shadow: 0 0 8px var(--color-secondary);
    font-weight: bold;
    z-index: 9;
}

.tv-vintage-logo {
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-shadow: 0 0 8px var(--color-secondary);
    opacity: 0.8;
    z-index: 9;
}

.tv-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%);
    background-size: 100% 4px;
    z-index: 6;
}

.tv-flicker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 16, 16, 0.08);
    opacity: 0;
    z-index: 6;
    animation: tvFlicker 0.15s infinite;
}

@keyframes tvFlicker {
    0% { opacity: 0.08; }
    50% { opacity: 0.12; }
    100% { opacity: 0.08; }
}

.tv-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 255, 20, 0.03); /* Subtle green CRT screen phosphor tint */
    z-index: 5;
}

.tv-control-knobs {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 6px;
    z-index: 9;
}

.tv-control-knobs .knob {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    background: linear-gradient(135deg, #666 0%, #333 100%);
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.2), 0 1px 3px rgba(0,0,0,0.5);
}


/* 3. GAMEBOY COLOR OVERLAY */
.device-overlay[data-device="gameboy"] {
    background: none;
}

.gameboy-screen-bezel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 20px solid #232529; /* Dark plastic Gameboy bezel */
    border-top-width: 32px;
    border-bottom-width: 38px;
    box-sizing: border-box;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px;
}

.gameboy-battery-indicator {
    position: absolute;
    top: -20px;
    left: -12px;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 7;
}

.battery-led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ff1133;
    box-shadow: 0 0 8px #ff1133;
}

.battery-label {
    font-size: 0.35rem;
    color: #888;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
}

.gameboy-text-top {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    color: #999;
    font-size: 0.38rem;
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: 0.8px;
    font-family: 'Space Mono', monospace;
}

.gameboy-buttons-indicator {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 38px;
    background: #232529;
    z-index: 7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-top: 1px solid #1a1a1c;
}

.gameboy-dpad {
    font-size: 0.95rem;
    color: #121214;
    text-shadow: 0 1px 1px rgba(255,255,255,0.1);
}

.gameboy-a-b {
    display: flex;
    gap: 6px;
}

.gameboy-btn-round {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #a6192e; /* Dark red buttons */
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: inset 1px 1px 1px rgba(255,255,255,0.1), 0 1px 2px rgba(0,0,0,0.6);
    font-family: 'Space Mono', monospace;
}


/* 4. Y2K TECH TABLET OVERLAY */
.device-overlay[data-device="tablet"] {
    background: radial-gradient(circle, transparent 60%, rgba(0,112,255,0.15) 100%);
}

.tablet-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 22px;
    background: rgba(0, 112, 255, 0.8); /* Cyber Blue */
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    z-index: 7;
    border-bottom: 1px solid rgba(0, 112, 255, 0.5);
    box-shadow: 0 1px 6px rgba(0,112,255,0.3);
}

.tablet-header .window-controls {
    display: flex;
    gap: 8px;
    font-weight: bold;
}

.tablet-header .window-controls span {
    cursor: pointer;
}

.tablet-header .window-controls .btn-close-window {
    color: #ff3366;
}

.tablet-hud-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 112, 255, 0.12) 1px, transparent 1px);
    background-size: 16px 16px;
    z-index: 5;
}

.tablet-hud-crosshairs {
    position: absolute;
    top: 35px;
    left: 35px;
    right: 35px;
    bottom: 35px;
    border: 1px dashed rgba(0, 112, 255, 0.25);
    z-index: 6;
}

.tablet-hud-crosshairs .hud-target-bracket {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #0070FF;
}

.tablet-hud-crosshairs .corner-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.tablet-hud-crosshairs .corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.tablet-hud-crosshairs .corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.tablet-hud-crosshairs .corner-br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.tablet-battery-hud {
    position: absolute;
    bottom: 12px;
    right: 15px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: #0070FF;
    text-shadow: 0 0 5px rgba(0, 112, 255, 0.8);
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 4px;
}


/* 5. ASTRONAUT SPACESUIT HUD OVERLAY */
.device-overlay[data-device="astronaut"] {
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.astronaut-helmet-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 15%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 60%, rgba(0,0,0,0.3) 100%);
    box-shadow: inset 0 0 40px rgba(0,255,255,0.1);
    z-index: 6;
}

.astronaut-hud-telemetry {
    position: absolute;
    top: 30px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.58rem;
    color: #00FFFF;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
    z-index: 7;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.astronaut-hud-telemetry .gauge-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.astronaut-crosshairs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    color: #ff00ff;
    text-shadow: 0 0 6px #ff00ff;
    border: 1px solid rgba(255, 0, 255, 0.4);
    background: rgba(0,0,0,0.3);
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 7;
    letter-spacing: 0.5px;
    animation: pulseGlow 1.5s infinite alternate;
}


/* 6. POLAROID / VHS ANALOG OVERLAY */
.device-overlay[data-device="polaroid"] {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 50%, rgba(0,0,0,0.1) 100%);
}

.polaroid-vhs-rec {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #ff3366;
    font-size: 0.7rem;
    font-weight: 800;
    text-shadow: 0 0 6px rgba(255, 51, 102, 0.8);
    z-index: 7;
    font-family: 'Space Mono', monospace;
}

.polaroid-vhs-play {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #00ff66;
    font-size: 0.7rem;
    font-weight: 800;
    text-shadow: 0 0 6px rgba(0, 255, 102, 0.8);
    z-index: 7;
    font-family: 'Space Mono', monospace;
}

.polaroid-vhs-timestamp {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 7;
    letter-spacing: 1px;
}

.polaroid-vhs-time {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 7;
    letter-spacing: 1px;
}

.polaroid-vhs-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 100, 0, 0.03) 70%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 6;
}

/* Slide Transition Animations */
.active-slide {
    animation: fadeInSlide 0.3s ease;
}

@keyframes fadeInSlide {
    from { opacity: 0.7; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

/* ==========================================
   🖤 THEME: SOBRIO BLANCO Y NEGRO (MINIMAL_BW)
   ========================================== */
.theme-minimal_bw {
    color: #ffffff !important;
}

body.theme-minimal_bw {
    background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../fotos/foto1.jpeg') !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    color: #222222 !important;
}

/* Force sections to be transparent so the fixed body background shows through */
body.theme-minimal_bw section,
body.theme-minimal_bw .bg-white,
body.theme-minimal_bw .bg-light,
body.theme-minimal_bw .bg-dark-section,
body.theme-minimal_bw [style*="background"] {
    background-color: transparent !important;
    background: transparent !important;
}

/* Make section titles and general text outside cards dark and elegant */
.theme-minimal_bw .section-title {
    color: #111111 !important;
}

.theme-minimal_bw .section-subtitle {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
}

.theme-minimal_bw .title-divider {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.theme-minimal_bw .title-divider::after {
    background-color: var(--color-primary) !important;
}

.theme-minimal_bw .brush-font,
.theme-minimal_bw .text-secondary,
.theme-minimal_bw .text-muted,
.theme-minimal_bw p.italic {
    color: #444444 !important;
}

.theme-minimal_bw .text-dark {
    color: #111111 !important;
}

/* Grayscale photos transitioning to color on hover */
.theme-minimal_bw img.gallery-img,
.theme-minimal_bw img.polaroid-img,
.theme-minimal_bw img.player-art,
.theme-minimal_bw .hero-bg {
    filter: grayscale(100%);
    transition: filter 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.theme-minimal_bw .gallery-item:hover img.gallery-img,
.theme-minimal_bw .polaroid-card:hover img.polaroid-img,
.theme-minimal_bw .spotify-player-card:hover img.player-art {
    filter: grayscale(0%);
}

.theme-minimal_bw .vhs-cam-overlay,
.theme-minimal_bw .device-overlay,
.theme-minimal_bw .tv-static-effect {
    display: none !important;
}

.theme-minimal_bw .y2k-sticker-monogram {
    transform: rotate(0deg);
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.theme-minimal_bw .y2k-sticker-text {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 2.8rem !important;
    text-shadow: none;
    letter-spacing: 2px;
}

.theme-minimal_bw .spotify-player-card {
    background: #ffffff !important;
    border: 1px solid #111111 !important;
    border-radius: 0px !important;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.08) !important;
    color: #111111 !important;
}

.theme-minimal_bw .spotify-player-card:hover {
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15) !important;
}

.theme-minimal_bw .spotify-player-card .player-btn {
    color: #111111 !important;
}

.theme-minimal_bw .spotify-player-card .player-btn:hover {
    color: var(--color-secondary) !important;
}

.theme-minimal_bw .player-art-container {
    border-radius: 0px !important;
    border: 1px solid #111111 !important;
    background-color: #f3f3f3;
}

.theme-minimal_bw .glass-card {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    color: #111111 !important;
}

.theme-minimal_bw .glass-card:hover {
    border-color: #111111 !important;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.05) !important;
}

.theme-minimal_bw .countdown-box {
    background: #ffffff !important;
    border: 1px solid #111111 !important;
    border-radius: 0px !important;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.05) !important;
}

.theme-minimal_bw .countdown-value {
    color: #111111 !important;
    text-shadow: none !important;
}

.theme-minimal_bw .countdown-label {
    color: #666666 !important;
}

.theme-minimal_bw .section-title {
    color: #111111 !important;
    text-shadow: none !important;
}

.theme-minimal_bw .title-divider {
    background-color: #111111 !important;
    box-shadow: none !important;
}

.theme-minimal_bw .title-divider::after {
    content: "✦";
    background-color: #ffffff;
    color: #111111;
}

.theme-minimal_bw .btn-premium {
    background-color: #111111 !important;
    border: 1px solid #111111 !important;
    border-radius: 0px !important;
    color: #ffffff !important;
    box-shadow: none !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.theme-minimal_bw .btn-premium:hover {
    background-color: transparent !important;
    color: #111111 !important;
}

.theme-minimal_bw .btn-premium-outline {
    background-color: transparent !important;
    border: 1px solid #111111 !important;
    border-radius: 0px !important;
    color: #111111 !important;
    box-shadow: none !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.theme-minimal_bw .btn-premium-outline:hover {
    background-color: #111111 !important;
    color: #ffffff !important;
}

.theme-minimal_bw .form-premium .form-label {
    color: #111111 !important;
    font-weight: 500;
}

.theme-minimal_bw .form-premium .form-control,
.theme-minimal_bw .form-premium .form-select {
    border: 1px solid #cccccc !important;
    background-color: #ffffff !important;
    color: #111111 !important;
    border-radius: 0px !important;
}

.theme-minimal_bw .form-premium .form-control:focus,
.theme-minimal_bw .form-premium .form-select:focus {
    border-color: #111111 !important;
    box-shadow: none !important;
}

.theme-minimal_bw .accordion-premium .accordion-item {
    border: 1px solid #e5e5e5 !important;
    background: #ffffff !important;
    border-radius: 0px !important;
}

.theme-minimal_bw .accordion-premium .accordion-button {
    color: #111111 !important;
    border-radius: 0px !important;
}

.theme-minimal_bw .accordion-premium .accordion-button:not(.collapsed) {
    background-color: #f9f9f9 !important;
    color: #000000 !important;
}

.theme-minimal_bw .polaroid-card {
    border: 1px solid #e5e5e5 !important;
    background-color: #ffffff !important;
    border-radius: 0px !important;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.03) !important;
}

.theme-minimal_bw .polaroid-card:hover {
    border-color: #111111 !important;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.08) !important;
}

.theme-minimal_bw .polaroid-author {
    color: #111111 !important;
    text-shadow: none !important;
}

.theme-minimal_bw .polaroid-caption p {
    color: #444444 !important;
}

.theme-minimal_bw .gallery-item {
    border: 1px solid #e5e5e5 !important;
    border-radius: 0px !important;
}

.theme-minimal_bw .gallery-item:hover {
    border-color: #111111 !important;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.05) !important;
}

.theme-minimal_bw .gallery-overlay {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.theme-minimal_bw .message-bubble {
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-left: 4px solid #111111 !important;
    border-radius: 0px !important;
}

.theme-minimal_bw .message-bubble:hover {
    border-color: #111111 !important;
}

.theme-minimal_bw .message-bubble p {
    color: #444444 !important;
}

.theme-minimal_bw .message-bubble h5 {
    color: #111111 !important;
}

.theme-minimal_bw footer {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-top: none;
}

.theme-minimal_bw footer hr {
    border-color: #333333 !important;
}

.theme-minimal_bw footer .text-secondary {
    color: #ffffff !important;
}

.theme-minimal_bw .audio-player-floating .music-btn {
    background-color: #ffffff !important;
    border: 1px solid #111111 !important;
    border-radius: 0px !important;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.1) !important;
}

.theme-minimal_bw .audio-player-floating .music-btn i {
    color: #111111 !important;
    text-shadow: none !important;
}

.theme-minimal_bw .audio-player-floating .music-btn:hover {
    background-color: #111111 !important;
}

.theme-minimal_bw .audio-player-floating .music-btn:hover i {
    color: #ffffff !important;
}

/* ==========================================
   🖤 B&W THEME WATERMARK WEDDING BACKDROP OVERRIDES
   ========================================== */
body.theme-minimal_bw {
    background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../fotos/foto1.jpeg') !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    color: #222222 !important;
}

/* Force sections to be transparent so the fixed body background shows through */
body.theme-minimal_bw section,
body.theme-minimal_bw .bg-white,
body.theme-minimal_bw .bg-light,
body.theme-minimal_bw .bg-dark-section,
body.theme-minimal_bw #detalles,
body.theme-minimal_bw #recuerdos,
body.theme-minimal_bw #regalos,
body.theme-minimal_bw #galeria,
body.theme-minimal_bw [style*="background"] {
    background-color: transparent !important;
    background: transparent !important;
}

/* Make section titles and general text outside cards dark and elegant */
.theme-minimal_bw .section-title {
    color: #111111 !important;
}

.theme-minimal_bw .section-subtitle {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
}

.theme-minimal_bw .title-divider {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.theme-minimal_bw .title-divider::after {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
    border: 1px solid var(--color-primary) !important;
}

/* Quote/Message section font styling */
.theme-minimal_bw .brush-font,
.theme-minimal_bw .text-secondary,
.theme-minimal_bw .text-muted,
.theme-minimal_bw p.italic {
    color: #444444 !important;
}

.theme-minimal_bw .text-dark {
    color: #111111 !important;
}

/* Ensure glass cards stand out with a premium white/frosted glass style */
.theme-minimal_bw .glass-card {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    color: #111111 !important;
}

/* Override text elements inside glass cards to remain dark for contrast */
.theme-minimal_bw .glass-card h4,
.theme-minimal_bw .glass-card h5,
.theme-minimal_bw .glass-card p,
.theme-minimal_bw .glass-card span,
.theme-minimal_bw .glass-card label,
.theme-minimal_bw .glass-card input,
.theme-minimal_bw .glass-card select,
.theme-minimal_bw .glass-card option,
.theme-minimal_bw .glass-card strong {
    color: #111111 !important;
}

.theme-minimal_bw .glass-card .text-secondary,
.theme-minimal_bw .glass-card .text-muted {
    color: #555555 !important;
}

.theme-minimal_bw .glass-card .btn-premium {
    color: #ffffff !important;
}

.theme-minimal_bw .glass-card .btn-premium:hover {
    color: #111111 !important;
}

/* The countdown boxes */
.theme-minimal_bw .countdown-box {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.theme-minimal_bw .countdown-value {
    color: #111111 !important;
}

.theme-minimal_bw .countdown-label {
    color: #666666 !important;
}

/* Polaroid cards in the guests photo wall */
.theme-minimal_bw .polaroid-card {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.theme-minimal_bw .polaroid-card p,
.theme-minimal_bw .polaroid-card span,
.theme-minimal_bw .polaroid-card strong,
.theme-minimal_bw .polaroid-card .polaroid-author {
    color: #111111 !important;
}

.theme-minimal_bw .polaroid-card .polaroid-caption p {
    color: #555555 !important;
}

/* Message bubbles in guestbook */
.theme-minimal_bw .message-bubble {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #111111 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.theme-minimal_bw .message-bubble p,
.theme-minimal_bw .message-bubble h5 {
    color: #111111 !important;
}

/* Sleek light-mode Accordion style */
.theme-minimal_bw .accordion-premium .accordion-item {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.theme-minimal_bw .accordion-premium .accordion-button {
    background-color: transparent !important;
    color: #111111 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.theme-minimal_bw .accordion-premium .accordion-button:not(.collapsed) {
    background-color: rgba(0, 0, 0, 0.03) !important;
    color: #111111 !important;
}

.theme-minimal_bw .accordion-premium .accordion-body {
    background-color: transparent !important;
    color: #222222 !important;
}

.theme-minimal_bw .accordion-premium .text-dark,
.theme-minimal_bw .accordion-premium strong,
.theme-minimal_bw .accordion-premium span {
    color: #111111 !important;
}

/* Explicit white typography overrides for the footer in B&W theme */
body.theme-minimal_bw footer span.cursive-names {
    color: var(--color-primary) !important;
}
body.theme-minimal_bw footer div.text-muted,
body.theme-minimal_bw footer p.text-muted,
body.theme-minimal_bw footer p.small {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Align details cards texts and maps symmetrically */
@media (min-width: 768px) {
    .venue-info-wrapper {
        min-height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}



/* ==========================================
   💛 THEME: CHAMPAGNE & GOLD (CHAMPAGNE_GOLD)
   ========================================== */
.theme-champagne_gold {
    color: var(--color-dark);
}

body.theme-champagne_gold {
    background-color: var(--color-bg);
}

.theme-champagne_gold .vhs-cam-overlay,
.theme-champagne_gold .device-overlay,
.theme-champagne_gold .tv-static-effect {
    display: none !important;
}

.theme-champagne_gold .y2k-sticker-monogram {
    transform: rotate(0deg);
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.theme-champagne_gold .y2k-sticker-text {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 3.2rem !important;
    text-shadow: none;
    letter-spacing: 1px;
}

.theme-champagne_gold .spotify-player-card {
    background: #ffffff !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.18) !important;
    color: var(--color-dark) !important;
}

.theme-champagne_gold .spotify-player-card:hover {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 12px 35px rgba(197, 168, 128, 0.25) !important;
}

.theme-champagne_gold .spotify-player-card .player-btn {
    color: var(--color-dark) !important;
}

.theme-champagne_gold .spotify-player-card .player-btn:hover {
    color: var(--color-primary) !important;
}

.theme-champagne_gold .player-art-container {
    border-radius: 10px !important;
    border: 1px solid var(--color-secondary) !important;
    background-color: #f7f5f0;
}

.theme-champagne_gold .glass-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03) !important;
    color: var(--color-dark) !important;
}

.theme-champagne_gold .glass-card:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.1) !important;
}

.theme-champagne_gold .countdown-box {
    background: #ffffff !important;
    border: 1px solid rgba(197, 168, 128, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.05) !important;
}

.theme-champagne_gold .countdown-value {
    color: var(--color-primary) !important;
    text-shadow: none !important;
}

.theme-champagne_gold .countdown-label {
    color: var(--color-secondary) !important;
}

.theme-champagne_gold .section-title {
    color: var(--color-dark) !important;
    text-shadow: none !important;
}

.theme-champagne_gold .title-divider {
    background-color: var(--color-primary) !important;
    box-shadow: none !important;
}

.theme-champagne_gold .title-divider::after {
    content: "•";
    background-color: var(--color-bg);
    color: var(--color-primary);
}

.theme-champagne_gold .btn-premium {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    border-radius: 50px !important;
    box-shadow: 0 5px 15px rgba(184, 157, 91, 0.25) !important;
    color: #ffffff !important;
    font-weight: 500;
}

.theme-champagne_gold .btn-premium:hover {
    background-color: transparent !important;
    color: var(--color-primary) !important;
}

.theme-champagne_gold .btn-premium-outline {
    border-color: var(--color-secondary) !important;
    border-radius: 50px !important;
    box-shadow: none !important;
    color: var(--color-secondary) !important;
}

.theme-champagne_gold .btn-premium-outline:hover {
    background-color: var(--color-secondary) !important;
    color: #ffffff !important;
}

.theme-champagne_gold .form-premium .form-label {
    color: var(--color-dark) !important;
}

.theme-champagne_gold .form-premium .form-control,
.theme-champagne_gold .form-premium .form-select {
    border: 1px solid rgba(197, 168, 128, 0.4) !important;
    background-color: #ffffff !important;
    color: var(--color-dark) !important;
    border-radius: 8px !important;
}

.theme-champagne_gold .form-premium .form-control:focus,
.theme-champagne_gold .form-premium .form-select:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 10px rgba(184, 157, 91, 0.15) !important;
}

.theme-champagne_gold .accordion-premium .accordion-item {
    border: 1px solid rgba(197, 168, 128, 0.2) !important;
    background: #ffffff !important;
    border-radius: 12px !important;
}

.theme-champagne_gold .accordion-premium .accordion-button {
    color: var(--color-dark) !important;
}

.theme-champagne_gold .accordion-premium .accordion-button:not(.collapsed) {
    background-color: rgba(197, 168, 128, 0.05) !important;
    color: var(--color-primary) !important;
}

.theme-champagne_gold .polaroid-card {
    border: 1px solid rgba(197, 168, 128, 0.2) !important;
    background-color: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
}

.theme-champagne_gold .polaroid-card:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.12) !important;
}

.theme-champagne_gold .polaroid-author {
    color: var(--color-primary) !important;
    text-shadow: none !important;
}

.theme-champagne_gold .polaroid-caption p {
    color: var(--color-dark) !important;
}

.theme-champagne_gold .gallery-item {
    border: 1px solid rgba(197, 168, 128, 0.2) !important;
    border-radius: 12px !important;
}

.theme-champagne_gold .gallery-item:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.15) !important;
}

.theme-champagne_gold .gallery-overlay {
    background-color: rgba(197, 168, 128, 0.3) !important;
}

.theme-champagne_gold .message-bubble {
    background-color: #ffffff !important;
    border: 1px solid rgba(197, 168, 128, 0.2) !important;
    border-left: 4px solid var(--color-primary) !important;
    border-radius: 8px !important;
}

.theme-champagne_gold .message-bubble:hover {
    border-color: var(--color-primary) !important;
}

.theme-champagne_gold .message-bubble p {
    color: var(--color-dark) !important;
}

.theme-champagne_gold .message-bubble h5 {
    color: var(--color-primary) !important;
}

.theme-champagne_gold footer {
    background-color: #171512 !important;
    color: #e5e0d8 !important;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.theme-champagne_gold footer hr {
    border-color: var(--color-primary) !important;
}

.theme-champagne_gold footer .text-secondary {
    color: var(--color-primary) !important;
}

.theme-champagne_gold .audio-player-floating .music-btn {
    background-color: #ffffff !important;
    border: 1px solid var(--color-primary) !important;
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.1) !important;
}

.theme-champagne_gold .audio-player-floating .music-btn i {
    color: var(--color-primary) !important;
    text-shadow: none !important;
}

.theme-champagne_gold .audio-player-floating .music-btn:hover {
    border-color: var(--color-secondary) !important;
}


/* ==========================================
   💚 THEME: BOTANICAL EMERALD (BOTANICAL_EMERALD)
   ========================================== */
.theme-botanical_emerald {
    color: var(--color-dark);
}

body.theme-botanical_emerald {
    background-color: var(--color-bg);
}

.theme-botanical_emerald .vhs-cam-overlay,
.theme-botanical_emerald .device-overlay,
.theme-botanical_emerald .tv-static-effect {
    display: none !important;
}

.theme-botanical_emerald .y2k-sticker-monogram {
    transform: rotate(0deg);
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.theme-botanical_emerald .y2k-sticker-text {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 3rem !important;
    text-shadow: none;
    letter-spacing: 1px;
}

.theme-botanical_emerald .spotify-player-card {
    background: #ffffff !important;
    border: 1px solid var(--color-primary) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(28, 53, 45, 0.1) !important;
    color: var(--color-dark) !important;
}

.theme-botanical_emerald .spotify-player-card:hover {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 12px 30px rgba(28, 53, 45, 0.15) !important;
}

.theme-botanical_emerald .spotify-player-card .player-btn {
    color: var(--color-dark) !important;
}

.theme-botanical_emerald .spotify-player-card .player-btn:hover {
    color: var(--color-primary) !important;
}

.theme-botanical_emerald .player-art-container {
    border-radius: 6px !important;
    border: 1px solid var(--color-primary) !important;
    background-color: #f4f6f4;
}

.theme-botanical_emerald .glass-card {
    background: #ffffff !important;
    border: 1px solid rgba(28, 53, 45, 0.12) !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02) !important;
    color: var(--color-dark) !important;
}

.theme-botanical_emerald .glass-card:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 8px 25px rgba(28, 53, 45, 0.08) !important;
}

.theme-botanical_emerald .countdown-box {
    background: #ffffff !important;
    border: 1px solid rgba(28, 53, 45, 0.2) !important;
    border-radius: 8px !important;
}

.theme-botanical_emerald .countdown-value {
    color: var(--color-primary) !important;
    text-shadow: none !important;
}

.theme-botanical_emerald .countdown-label {
    color: var(--color-secondary) !important;
}

.theme-botanical_emerald .section-title {
    color: var(--color-primary) !important;
    text-shadow: none !important;
}

.theme-botanical_emerald .title-divider {
    background-color: var(--color-secondary) !important;
    box-shadow: none !important;
}

.theme-botanical_emerald .title-divider::after {
    content: "🍃";
    background-color: var(--color-bg);
}

.theme-botanical_emerald .btn-premium {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(28, 53, 45, 0.2) !important;
    color: #ffffff !important;
}

.theme-botanical_emerald .btn-premium:hover {
    background-color: transparent !important;
    color: var(--color-primary) !important;
}

.theme-botanical_emerald .btn-premium-outline {
    border-color: var(--color-primary) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    color: var(--color-primary) !important;
}

.theme-botanical_emerald .btn-premium-outline:hover {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
}

.theme-botanical_emerald .form-premium .form-label {
    color: var(--color-primary) !important;
    font-weight: 500;
}

.theme-botanical_emerald .form-premium .form-control,
.theme-botanical_emerald .form-premium .form-select {
    border: 1px solid rgba(28, 53, 45, 0.2) !important;
    background-color: #ffffff !important;
    color: var(--color-dark) !important;
    border-radius: 4px !important;
}

.theme-botanical_emerald .form-premium .form-control:focus,
.theme-botanical_emerald .form-premium .form-select:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 8px rgba(28, 53, 45, 0.1) !important;
}

.theme-botanical_emerald .accordion-premium .accordion-item {
    border: 1px solid rgba(28, 53, 45, 0.12) !important;
    background: #ffffff !important;
    border-radius: 8px !important;
}

.theme-botanical_emerald .accordion-premium .accordion-button {
    color: var(--color-dark) !important;
}

.theme-botanical_emerald .accordion-premium .accordion-button:not(.collapsed) {
    background-color: rgba(28, 53, 45, 0.04) !important;
    color: var(--color-primary) !important;
}

.theme-botanical_emerald .polaroid-card {
    border: 1px solid rgba(28, 53, 45, 0.12) !important;
    background-color: #ffffff !important;
    border-radius: 8px !important;
}

.theme-botanical_emerald .polaroid-card:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 8px 20px rgba(28, 53, 45, 0.08) !important;
}

.theme-botanical_emerald .polaroid-author {
    color: var(--color-primary) !important;
    text-shadow: none !important;
}

.theme-botanical_emerald .polaroid-caption p {
    color: var(--color-dark) !important;
}

.theme-botanical_emerald .gallery-item {
    border: 1px solid rgba(28, 53, 45, 0.12) !important;
    border-radius: 8px !important;
}

.theme-botanical_emerald .gallery-item:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 8px 20px rgba(28, 53, 45, 0.1) !important;
}

.theme-botanical_emerald .gallery-overlay {
    background-color: rgba(28, 53, 45, 0.25) !important;
}

.theme-botanical_emerald .message-bubble {
    background-color: #ffffff !important;
    border: 1px solid rgba(28, 53, 45, 0.1) !important;
    border-left: 4px solid var(--color-primary) !important;
    border-radius: 8px !important;
}

.theme-botanical_emerald .message-bubble:hover {
    border-color: var(--color-primary) !important;
}

.theme-botanical_emerald .message-bubble p {
    color: var(--color-dark) !important;
}

.theme-botanical_emerald .message-bubble h5 {
    color: var(--color-primary) !important;
}

.theme-botanical_emerald footer {
    background-color: #12221A !important;
    color: #e2e8e5 !important;
    border-top: 1px solid rgba(28, 53, 45, 0.1);
}

.theme-botanical_emerald footer hr {
    border-color: var(--color-secondary) !important;
}

.theme-botanical_emerald footer .text-secondary {
    color: var(--color-secondary) !important;
}

.theme-botanical_emerald .audio-player-floating .music-btn {
    background-color: #ffffff !important;
    border: 1px solid var(--color-primary) !important;
    box-shadow: 0 5px 15px rgba(28, 53, 45, 0.08) !important;
}

.theme-botanical_emerald .audio-player-floating .music-btn i {
    color: var(--color-primary) !important;
    text-shadow: none !important;
}

.theme-botanical_emerald .audio-player-floating .music-btn:hover {
    border-color: var(--color-secondary) !important;
}

.theme-botanical_emerald .whatsapp-float {
    background-color: #1C352D !important;
    color: #ffffff !important;
}

/* Cupid Slideshow Navigation */
.slideshow-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    color: #ffffff;
    z-index: 10;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease;
    outline: none;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-nav-btn.prev-btn {
    left: 12px;
}

.slideshow-nav-btn.next-btn {
    right: 12px;
}

.slideshow-nav-btn:hover {
    opacity: 0.95 !important;
    transform: translateY(-50%) scale(1.12) !important;
}

.slideshow-nav-btn:active {
    transform: translateY(-50%) scale(0.92) !important;
}

/* Progressive Letter Glow Animation */
.luminous-text {
    display: inline-flex !important;
    flex-wrap: wrap;
    justify-content: center;
}

.luminous-char {
    display: inline-block;
    animation: letterLuminosity 3.5s ease-in-out infinite;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

/* Standard/Colored themes glow (Gold / Emerald) */
@keyframes letterLuminosity {
    0%, 100% {
        color: var(--color-primary);
        text-shadow: none;
        transform: scale(1);
    }
    12% {
        color: #ffffff;
        text-shadow: 
            0 0 8px var(--color-primary), 
            0 0 16px var(--color-primary), 
            0 0 25px #ffffff;
        transform: scale(1.06);
    }
    24%, 90% {
        color: var(--color-primary);
        text-shadow: none;
        transform: scale(1);
    }
}

/* Black & White theme specific glow (Sober metallic shimmer) */
.theme-minimal_bw .luminous-char {
    animation: letterLuminosityBW 3.5s ease-in-out infinite;
}

@keyframes letterLuminosityBW {
    0%, 100% {
        color: #111111;
        text-shadow: none;
        transform: scale(1);
    }
    12% {
        color: #000000;
        text-shadow: 
            0 0 6px rgba(0, 0, 0, 0.2), 
            0 0 12px rgba(0, 0, 0, 0.15);
        transform: scale(1.06);
        font-weight: 700;
    }
    24%, 90% {
        color: #111111;
        text-shadow: none;
        transform: scale(1);
    }
}

/* Vintage Newspaper Card Styling */
.newspaper-card {
    background-color: #f6f4ee;
    border: 1px solid #d3cfc7;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: #111111;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    /* Newsprint paper grain overlay effect */
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 4px 4px;
    border-radius: 4px;
}

.newspaper-title {
    font-family: 'Pirata One', serif !important;
    font-size: 4.5rem !important;
    font-weight: 400 !important;
    text-transform: none !important;
    color: #111111 !important;
    margin: 5px 0 !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    text-shadow: none !important;
}

.newspaper-subtitle {
    font-family: 'Pinyon Script', cursive !important;
    font-size: 2.8rem !important;
    color: #111111 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
    text-transform: none !important;
}

.newspaper-photo-box {
    border: 1.5px solid #111111;
    background-color: #ffffff;
    padding: 6px;
}

.newspaper-photo-box .player-art-container {
    border: 1px solid #111111 !important;
    border-radius: 0 !important;
}

.newspaper-photo-box img {
    border: 1px solid #111111 !important;
    border-radius: 0 !important;
    filter: grayscale(100%) contrast(1.15) !important;
    transition: filter 0.5s ease;
}

.newspaper-photo-box img:hover {
    filter: grayscale(0%) contrast(1) !important;
}

.border-end-md {
    border-right: 1.5px solid #111111 !important;
}

@media (max-width: 767.98px) {
    .border-end-md {
        border-right: none !important;
        border-bottom: 1.5px solid #111111 !important;
    }
    .newspaper-title {
        font-size: 3.2rem !important;
    }
    .newspaper-subtitle {
        font-size: 2rem !important;
    }
}

/* Elegant calligraphic names */
.cursive-names {
    font-family: 'Pinyon Script', cursive !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
}

/* Premium Maps Tab pills styling */
#mapsTab .nav-link {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

#mapsTab .nav-link.active {
    background-color: var(--color-primary) !important;
    color: var(--color-bg) !important;
    border-color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
