/* 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;
}

/* High-Fashion Gucci Style Web Stripe */
.gucci-stripe {
    height: 14px;
    background: linear-gradient(90deg, 
        #133827 0%, #133827 40%, 
        #A6192E 40%, #A6192E 60%, 
        #133827 60%, #133827 100%
    );
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 15px rgba(19, 56, 39, 0.5);
    position: relative;
    z-index: 10;
}

/* Typewriter Typing Effect on BIANCA */
.typing-effect {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--color-primary); /* Cursor */
    width: 0;
    animation: 
        typing 2s steps(6, 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: 480px;
    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: 480px;
    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: 800;
    color: var(--color-primary); /* LED Fuchsia */
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
    font-family: 'Bungee', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary); /* LED Green */
    font-weight: 700;
}

/* 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-art-container {
        height: 320px !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: CYBER Y2K SPECIFICS
   ========================================== */
.theme-cyber .script-font, .theme-cyber .brush-font {
    font-family: 'Permanent Marker', cursive !important;
}

/* ==========================================
   🌸 THEME: ROMANTIC COQUETTE OVERRIDES
   ========================================== */
.theme-coquette {
    color: var(--color-dark);
}

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

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

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

.theme-coquette .spotify-player-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 3px solid var(--color-primary) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.2) !important;
    color: var(--color-dark) !important;
}

.theme-coquette .spotify-player-card:hover {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 10px 35px rgba(143, 168, 155, 0.3) !important;
}

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

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

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

.theme-coquette .player-art-container {
    border-radius: 12px !important;
    border: 2px solid var(--color-primary) !important;
    background-color: #000000;
}

.theme-coquette .glass-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(212, 165, 169, 0.3) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    color: var(--color-dark) !important;
}

.theme-coquette .glass-card:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 10px 35px rgba(212, 165, 169, 0.15) !important;
}

.theme-coquette .countdown-box {
    background: #ffffff !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(212, 165, 169, 0.1) !important;
}

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

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

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

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

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

.theme-coquette .btn-premium {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    border-radius: 30px !important;
    box-shadow: 0 5px 15px rgba(212, 165, 169, 0.3) !important;
    color: #ffffff !important;
}

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

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

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

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

.theme-coquette .form-premium .form-control,
.theme-coquette .form-premium .form-select {
    border: 1px solid rgba(212, 165, 169, 0.5) !important;
    background-color: #ffffff !important;
    color: var(--color-dark) !important;
    border-radius: 8px !important;
}

.theme-coquette .form-premium .form-control:focus,
.theme-coquette .form-premium .form-select:focus {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 10px rgba(143, 168, 155, 0.2) !important;
}

.theme-coquette .accordion-premium .accordion-item {
    border: 2px solid rgba(212, 165, 169, 0.3) !important;
    background: #ffffff !important;
    border-radius: 12px !important;
}

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

.theme-coquette .accordion-premium .accordion-button:not(.collapsed) {
    background-color: rgba(212, 165, 169, 0.1) !important;
    color: var(--color-primary) !important;
}

.theme-coquette .polaroid-card {
    border: 2px solid var(--color-primary) !important;
    background-color: #ffffff !important;
    border-radius: 8px !important;
}

.theme-coquette .polaroid-card:hover {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 10px 25px rgba(143, 168, 155, 0.2) !important;
}

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

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

.theme-coquette .gallery-item {
    border: 2px solid var(--color-primary) !important;
    border-radius: 8px !important;
}

.theme-coquette .gallery-item:hover {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 10px 25px rgba(143, 168, 155, 0.2) !important;
}

.theme-coquette .gallery-overlay {
    background-color: rgba(212, 165, 169, 0.4) !important;
}

.theme-coquette .message-bubble {
    background-color: #ffffff !important;
    border: 1px solid rgba(212, 165, 169, 0.3) !important;
    border-left: 5px solid var(--color-primary) !important;
    border-radius: 8px !important;
}

.theme-coquette .message-bubble:hover {
    border-color: var(--color-secondary) !important;
    border-left-color: var(--color-secondary) !important;
}

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

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

.theme-coquette footer {
    background-color: #FAF5F5 !important;
    color: var(--color-dark) !important;
    border-top: 2px solid rgba(212, 165, 169, 0.2);
}

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

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

.theme-coquette .audio-player-floating .music-btn {
    background-color: #ffffff !important;
    border: 3px solid var(--color-primary) !important;
    box-shadow: 0 5px 15px rgba(212, 165, 169, 0.2) !important;
}

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

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

.theme-coquette .whatsapp-float {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2) !important;
}

/* ==========================================
   ✨ THEME: VIP NIGHT GLAM OVERRIDES
   ========================================== */
.theme-vip {
    color: #FFFFFF;
}

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

.theme-vip .y2k-sticker-monogram {
    transform: rotate(0deg);
    background-color: transparent;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 15px rgba(223, 186, 115, 0.2);
    display: inline-block;
    text-align: center;
    margin-top: 15px;
    border-radius: 4px;
    padding: 8px 30px;
}

.theme-vip .y2k-sticker-text {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 1.8rem !important;
    text-shadow: 0 0 5px rgba(223, 186, 115, 0.3);
    letter-spacing: 2px;
}

.theme-vip .spotify-player-card {
    background: rgba(10, 10, 13, 0.98) !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: 4px !important;
    box-shadow: 0 0 25px rgba(223, 186, 115, 0.15) !important;
    color: #ffffff !important;
}

.theme-vip .spotify-player-card:hover {
    border-color: #ffffff !important;
    box-shadow: 0 0 30px rgba(223, 186, 115, 0.25) !important;
}

.theme-vip .spotify-player-card .player-btn {
    color: #ffffff !important;
}

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

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

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

.theme-vip .glass-card {
    background: rgba(12, 12, 16, 0.95) !important;
    border: 1px solid rgba(223, 186, 115, 0.3) !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
}

.theme-vip .glass-card:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 25px rgba(223, 186, 115, 0.1) !important;
}

.theme-vip .countdown-box {
    background: #0f0f14 !important;
    border: 1px solid var(--color-primary) !important;
    border-radius: 4px !important;
    box-shadow: 0 0 15px rgba(223, 186, 115, 0.1) !important;
}

.theme-vip .countdown-value {
    color: var(--color-primary) !important;
    text-shadow: 0 0 8px rgba(223, 186, 115, 0.4) !important;
}

.theme-vip .countdown-label {
    color: #ffffff !important;
}

.theme-vip .section-title {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(223, 186, 115, 0.2) !important;
}

.theme-vip .title-divider {
    background-color: var(--color-primary) !important;
    box-shadow: 0 0 5px var(--color-primary) !important;
}

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

.theme-vip .btn-premium {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    border-radius: 4px !important;
    box-shadow: 0 0 15px rgba(223, 186, 115, 0.3) !important;
    color: #0b0b0d !important;
}

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

.theme-vip .btn-premium-outline {
    border-color: #ffffff !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

.theme-vip .btn-premium-outline:hover {
    background-color: #ffffff !important;
    color: #08080c !important;
}

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

.theme-vip .form-premium .form-control,
.theme-vip .form-premium .form-select {
    border: 1px solid rgba(223, 186, 115, 0.3) !important;
    background-color: #09090c !important;
    color: #ffffff !important;
    border-radius: 4px !important;
}

.theme-vip .form-premium .form-control:focus,
.theme-vip .form-premium .form-select:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 10px rgba(223, 186, 115, 0.3) !important;
}

.theme-vip .accordion-premium .accordion-item {
    border: 1px solid rgba(223, 186, 115, 0.3) !important;
    background: #0f0f14 !important;
    border-radius: 4px !important;
}

.theme-vip .accordion-premium .accordion-button {
    color: #ffffff !important;
}

.theme-vip .accordion-premium .accordion-button:not(.collapsed) {
    background-color: rgba(223, 186, 115, 0.1) !important;
    color: var(--color-primary) !important;
}

.theme-vip .polaroid-card {
    border: 1px solid var(--color-primary) !important;
    background-color: #0b0b0d !important;
    border-radius: 4px !important;
}

.theme-vip .polaroid-card:hover {
    border-color: #ffffff !important;
    box-shadow: 0 0 25px rgba(223, 186, 115, 0.3) !important;
}

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

.theme-vip .polaroid-caption p {
    color: #eaeaea !important;
}

.theme-vip .gallery-item {
    border: 1px solid var(--color-primary) !important;
    border-radius: 4px !important;
}

.theme-vip .gallery-item:hover {
    border-color: #ffffff !important;
    box-shadow: 0 0 25px rgba(223, 186, 115, 0.3) !important;
}

.theme-vip .gallery-overlay {
    background-color: rgba(223, 186, 115, 0.3) !important;
}

.theme-vip .message-bubble {
    background-color: #0b0b0d !important;
    border: 1px solid rgba(223, 186, 115, 0.2) !important;
    border-left: 4px solid var(--color-primary) !important;
    border-radius: 4px !important;
}

.theme-vip .message-bubble:hover {
    border-color: #ffffff !important;
    border-left-color: #ffffff !important;
}

.theme-vip .message-bubble p {
    color: #eaeaea !important;
}

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

.theme-vip footer {
    background-color: #050507 !important;
    color: #eaeaea !important;
    border-top: 1px solid rgba(223, 186, 115, 0.1);
}

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

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

.theme-vip .audio-player-floating .music-btn {
    background-color: #0b0b0d !important;
    border: 2px solid var(--color-primary) !important;
    box-shadow: 0 0 15px rgba(223, 186, 115, 0.3) !important;
}

.theme-vip .audio-player-floating .music-btn i {
    color: var(--color-primary) !important;
    text-shadow: 0 0 5px var(--color-primary) !important;
}

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

}

/* ==========================================
   🔒 IMAGE PROTECTION FOR SENSITIVE PHOTOS
   ========================================== */
img {
    -webkit-touch-callout: none !important; /* Disables mobile touch-hold context menu */
    -webkit-user-select: none !important;   /* Safari */
    -khtml-user-select: none !important;   /* Konqueror HTML */
    -moz-user-select: none !important;     /* Firefox */
    -ms-user-select: none !important;      /* Internet Explorer/Edge */
    user-select: none !important;          /* Standard */
    -webkit-user-drag: none !important;    /* Disables dragging images to desktop */
}

