/* ==========================================
   OKLUTE PREMIUM LIGHT SEDUCING THEME
   ========================================== */

/* ─── RESET & BASE ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff4775;
    --primary-glow: rgba(255, 71, 117, 0.35);
    --primary-dark: #e02852;
    --primary-light: #ffebee;
    
    --secondary: #ff758c;
    --secondary-glow: rgba(255, 117, 140, 0.25);
    
    --bg-light: linear-gradient(135deg, #fff5f7 0%, #ffeef2 45%, #ffd1dc 100%);
    --bg-card: rgba(255, 255, 255, 0.88);
    --border-glass: rgba(255, 71, 117, 0.12);
    --border-glass-hover: rgba(255, 71, 117, 0.35);
    
    --text-main: #3a0f1d;
    --text-muted: #8a5a67;
    --white: #ffffff;
    
    --gray-200: #e2d8da;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    
    --shadow-sm: 0 4px 15px rgba(255, 71, 117, 0.04);
    --shadow-md: 0 15px 40px rgba(255, 71, 117, 0.08);
    --shadow-lg: 0 30px 80px rgba(255, 71, 117, 0.16);
    --shadow-glow: 0 0 20px var(--primary-glow);
    
    --radius: 28px;
    --radius-sm: 18px;
    --radius-xs: 12px;
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ─── CUSTOM HEART CURSOR ─── */
html, body, a, button, [role="button"], input, select, textarea, .btn, .nav-link, .video-cam-btn, .boost, .profile-card, .action-btn, .popup-close-btn, .btn-popup-download, .tag {
    cursor: none !important;
}

/* Revert back to standard cursors inside the smartphone screen simulator mockup */
.phone-mockup, .phone-mockup * {
    cursor: auto !important;
}
.phone-mockup a, .phone-mockup button, .phone-mockup [role="button"], .phone-mockup input, .phone-mockup select, .phone-mockup textarea, .phone-mockup .btn, .phone-mockup .action-btn, .phone-mockup .profile-card, .phone-mockup .tag, .phone-mockup .video-cam-btn, .phone-mockup .boost {
    cursor: pointer !important;
}

/* Custom animated heart cursor element */
.custom-heart-cursor {
    width: 24px;
    height: 24px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff4775'><path d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/></svg>") no-repeat center center / contain;
    transform: translate(-50%, -50%);
    animation: heartPulse 1.2s infinite ease-in-out;
    transition: width 0.2s, height 0.2s, background-image 0.2s;
    display: none; /* Only shown if JS runs successfully to prevent broken state */
}

/* Show only when JS initializes */
body.has-custom-cursor .custom-heart-cursor {
    display: block;
}

/* Pulse breathing keyframe */
@keyframes heartPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Expanded state on hover */
.custom-heart-cursor.hover {
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e91e63'><path d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/></svg>");
}

/* Spark particle styles */
.cursor-heart-particle {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff758c'><path d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/></svg>") no-repeat center center / contain;
    transform: translate(-50%, -50%);
    animation: driftFade 0.8s forwards ease-out;
}

@keyframes driftFade {
    0% {
        transform: translate(-50%, -50%) translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) translate(var(--drift-x), var(--drift-y)) scale(0.3);
        opacity: 0;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ─── CUSTOM PRELOADER ─── */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff5f7;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.heart-loader {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-loader i {
    font-size: 4rem;
    color: var(--primary);
    animation: heartPulse 1.2s infinite ease-in-out;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.heart-loader .ring {
    position: absolute;
    border: 3px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
}

.heart-loader .ring-1 { width: 70px; height: 70px; animation-delay: 0s; }
.heart-loader .ring-2 { width: 90px; height: 90px; animation-delay: 0.5s; }
.heart-loader .ring-3 { width: 110px; height: 110px; animation-delay: 1s; }

.preloader-text {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 2.5s infinite alternate;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.22); }
    60% { transform: scale(1.1); }
}

@keyframes pulseRing {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes textShimmer {
    0% { opacity: 0.7; }
    100% { opacity: 1; filter: brightness(1.1); }
}

/* ─── COLOR BAR ─── */
.color-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* ─── NAVBAR (MINIMAL BRAND HEADER) ─── */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 245, 247, 0.8) !important;
    border-bottom: 1px solid var(--border-glass);
    padding: 0.8rem 0;
    margin-top: 4px;
    box-shadow: 0 4px 25px rgba(255, 71, 117, 0.05);
}

.brand-logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 12px var(--primary-glow);
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.1) rotate(15deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-left: 10px;
}

.brand-name {
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

.btn-download-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #fff !important;
    font-weight: 700;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-download-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    animation: shineBtn 4s infinite linear;
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    color: #fff !important;
}

/* ─── HERO (SINGLE FOCUS PORTPORT) ─── */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 6.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

/* ─── PULSING BACKGROUND BLOB ANIMATIONS ─── */
.bg-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 71, 117, 0.12) 0%, rgba(255, 117, 140, 0.03) 55%, transparent 100%);
    border-radius: 50%;
    z-index: -2;
    filter: blur(50px);
    animation: floatGlow 12s infinite ease-in-out alternate;
    pointer-events: none;
}

.bg-glow-1 {
    top: -12%;
    left: -8%;
}

.bg-glow-2 {
    bottom: -15%;
    right: -10%;
    animation-delay: -6s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

/* ─── GENTLY RISING FLOATING HEARTS ─── */
.floating-hearts-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    color: rgba(255, 71, 117, 0.1);
    font-size: 1.5rem;
    animation: floatUp 12s infinite linear;
    bottom: -10%;
}

.fh-1 { left: 8%; animation-duration: 10s; animation-delay: 0s; }
.fh-2 { left: 42%; animation-duration: 8s; animation-delay: 2.5s; font-size: 1rem; }
.fh-3 { left: 84%; animation-duration: 13s; animation-delay: 1.2s; font-size: 2.2rem; }
.fh-4 { left: 24%; animation-duration: 11s; animation-delay: 4s; font-size: 1.2rem; }
.fh-5 { left: 72%; animation-duration: 9s; animation-delay: 3s; font-size: 1.7rem; }

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
    15% { opacity: 0.85; }
    85% { opacity: 0.85; }
    100% { transform: translateY(-110vh) rotate(270deg) scale(1.1); opacity: 0; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 71, 117, 0.08);
    color: var(--primary);
    padding: 0.4rem 1.3rem 0.4rem 0.9rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 71, 117, 0.15);
    margin-bottom: 1.2rem;
    animation: pulseBadge 3s infinite alternate ease-in-out;
}

@keyframes pulseBadge {
    0% { border-color: rgba(255, 71, 117, 0.15); box-shadow: 0 0 0 rgba(255, 71, 117, 0); }
    100% { border-color: rgba(255, 71, 117, 0.45); box-shadow: 0 0 10px rgba(255, 71, 117, 0.08); }
}

.hero-badge .live-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.4s infinite ease-in-out;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 8px #00e676; }
}

.hero h1 {
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), #ff5252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 71, 117, 0.1));
}

.hero h1 .love-heart {
    display: inline-block;
    color: var(--primary);
    animation: heartBeatMain 1.5s infinite ease-in-out;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

@keyframes heartBeatMain {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.22); }
    30% { transform: scale(1.05); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}

/* ─── ELITE ROUNDED SANS PARAGRAPH (OUTFIT) ─── */
.hero p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.65;
    letter-spacing: 0.2px;
}

/* ─── SHIMMERING GLOW FOR PRIMARY DOWNLOAD BUTTON ─── */
.hero .btn-download-primary {
    padding: 1.1rem 2.8rem;
    font-weight: 800;
    border-radius: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    border: none;
    box-shadow: 0 8px 30px var(--primary-glow);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero .btn-download-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    animation: shineBtn 3s infinite linear;
}

@keyframes shineBtn {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero .btn-download-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px var(--primary-glow);
    scale: 1.02;
    color: #fff !important;
}

.security-logos {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.security-logos span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.security-logos span:hover {
    transform: translateY(-2px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-md);
}

.security-logos span i {
    font-size: 0.85rem;
    color: #00e676;
}

/* ─── PHONE MOCKUP (BREATHING GLOW OUTLINE) ─── */
.phone-wrapper {
    perspective: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 46px;
    padding: 12px;
    position: relative;
    animation: floatMockup 5s ease-in-out infinite, mockupGlow 4s infinite alternate ease-in-out;
    border: 1px solid rgba(255, 71, 117, 0.1);
    z-index: 10;
}

@keyframes floatMockup {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes mockupGlow {
    0% {
        box-shadow: 0 35px 90px rgba(255, 71, 117, 0.08),
                    0 0 0 6px rgba(255, 255, 255, 0.8),
                    inset 0 0 0 2px rgba(255, 71, 117, 0.04);
    }
    100% {
        box-shadow: 0 35px 90px rgba(255, 71, 117, 0.18),
                    0 0 0 6px rgba(255, 255, 255, 0.95),
                    inset 0 0 0 2px rgba(255, 71, 117, 0.15);
    }
}

/* ─── STARTUP-GRADE FLOATING SUCCESS BADGES ─── */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 71, 117, 0.18);
    padding: 10px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255, 71, 117, 0.08);
    z-index: 15;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-left {
    bottom: 120px;
    left: -80px;
}

.badge-right {
    top: 100px;
    right: -80px;
    animation-delay: -2s;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.floating-badge .icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 71, 117, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.floating-badge .badge-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-badge .badge-title {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-main);
}

.floating-badge .badge-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Responsive Overrides for badges */
@media (max-width: 1200px) {
    .badge-left { left: -30px; }
    .badge-right { right: -30px; }
}

@media (max-width: 991px) {
    .floating-badge { display: none !important; }
}

/* ─── SHIFT NOTCH TO PREVENT SCREEN OVERLAP ─── */
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    translate: -50%;
    width: 100px;
    height: 22px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 71, 117, 0.06);
    border-top: none;
}

.phone-notch .camera {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffeef2, #e02852);
    border-radius: 50%;
}

.phone-notch .speaker {
    width: 36px;
    height: 3px;
    background: rgba(255, 71, 117, 0.15);
    border-radius: 10px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fffdfd;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 71, 117, 0.04);
}

/* ─── INCREASE PADDING-TOP TO CLEAR NOTCH COMPLETELY ─── */
.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 22px 20px 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
}

.status-bar .icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

/* ─── INNER APP CONTENT ─── */
.app-content {
    flex: 1;
    padding: 2px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 71, 117, 0.08);
    padding-bottom: 6px;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-logo-img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    box-shadow: 0 2px 6px var(--primary-glow);
}

.app-logo-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* ─── SMARTPHONE HEADER VIDEO BUTTON ─── */
.app-header .video-cam-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 71, 117, 0.08);
    border: 1px solid rgba(255, 71, 117, 0.25);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    animation: heartPulseSlow 1.5s infinite ease-in-out;
    cursor: pointer;
}

.app-header .boost {
    background: rgba(255, 71, 117, 0.08);
    border: 1px solid rgba(255, 71, 117, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 3px;
    animation: textShimmer 2s infinite alternate;
}

.boost-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    padding: 8px 12px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 71, 117, 0.15);
}

.boost-banner .boost-title {
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
}

.boost-banner .countdown {
    display: inline-block;
    background: rgba(0, 0, 0, 0.15);
    padding: 1px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: 2px;
}

/* ─── OKLUTE SWIPER SIMULATOR ─── */
.swiper-simulator {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
}

.card-deck {
    width: 100%;
    height: 100%;
    position: relative;
}

.profile-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 71, 117, 0.1);
    box-shadow: 0 6px 20px rgba(255, 71, 117, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s;
    user-select: none;
}

/* Simulated elegant profile photos using local asset images */
.profile-card.p1 {
    background: linear-gradient(to top, rgba(58, 15, 29, 0.92) 0%, rgba(58, 15, 29, 0.1) 60%),
                url('../assets/pic1.jpg') no-repeat center center;
    background-size: cover;
    z-index: 6;
}

.profile-card.p2 {
    background: linear-gradient(to top, rgba(58, 15, 29, 0.92) 0%, rgba(58, 15, 29, 0.1) 60%),
                url('../assets/pic2.jpg') no-repeat center center;
    background-size: cover;
    z-index: 5;
    transform: scale(0.94) translateY(12px);
    opacity: 0.85;
}

.profile-card.p3 {
    background: linear-gradient(to top, rgba(58, 15, 29, 0.92) 0%, rgba(58, 15, 29, 0.1) 60%),
                url('../assets/pic3.jpg') no-repeat center center;
    background-size: cover;
    z-index: 4;
    transform: scale(0.88) translateY(24px);
    opacity: 0.7;
}

.profile-card.p4 {
    background: linear-gradient(to top, rgba(58, 15, 29, 0.92) 0%, rgba(58, 15, 29, 0.1) 60%),
                url('../assets/pic4.jpg') no-repeat center center;
    background-size: cover;
    z-index: 3;
    transform: scale(0.82) translateY(36px);
    opacity: 0.55;
}

.profile-card.p5 {
    background: linear-gradient(to top, rgba(58, 15, 29, 0.92) 0%, rgba(58, 15, 29, 0.1) 60%),
                url('../assets/pic5.jpg') no-repeat center center;
    background-size: cover;
    z-index: 2;
    transform: scale(0.76) translateY(48px);
    opacity: 0.4;
}

.profile-card.p6 {
    background: linear-gradient(to top, rgba(58, 15, 29, 0.92) 0%, rgba(58, 15, 29, 0.1) 60%),
                url('../assets/pic6.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    transform: scale(0.7) translateY(60px);
    opacity: 0.25;
}

/* Swipe animations classes */
.profile-card.swipe-left {
    transform: translate(-300px, 40px) rotate(-20deg) !important;
    opacity: 0 !important;
}

.profile-card.swipe-right {
    transform: translate(300px, 40px) rotate(20deg) !important;
    opacity: 0 !important;
}

/* ─── INLINE BADGES ROW (NO ABSOLUTE OVERLAP) ─── */
.profile-badges-row {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.badge-compat {
    background: linear-gradient(135deg, #ff758c, #ff4775);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(255, 71, 117, 0.2);
}

.badge-status-pill {
    background: rgba(255, 71, 117, 0.2);
    border: 1px solid rgba(255, 71, 117, 0.4);
    color: #ffcbd5;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    animation: heartPulseSlow 1.5s infinite alternate ease-in-out;
}

.badge-cam-pill {
    background: rgba(0, 230, 118, 0.2);
    border: 1px solid rgba(0, 230, 118, 0.4);
    color: #b9f6ca;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    animation: verifiedPulse 2s infinite alternate ease-in-out;
}

.profile-details {
    color: #fff;
    z-index: 5;
}

.profile-details .profile-name {
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-details .profile-name i {
    color: #2196f3;
    font-size: 0.8rem;
}

.profile-details .profile-meta {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1px;
}

.profile-details .profile-bio {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    line-height: 1.35;
}

.profile-details .profile-tags {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.profile-details .tag {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 0.5rem;
    font-weight: 600;
}

/* Swiper control buttons */
.swiper-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
}

.swiper-controls .btn-whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.05);
}

.swiper-controls .btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.swiper-controls .btn-whatsapp i {
    animation: heartPulseSlow 2s infinite ease-in-out;
}

.swiper-controls .btn-call {
    background: rgba(33, 150, 243, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.3);
    color: #2196f3;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.05);
}

.swiper-controls .btn-call:hover {
    background: #2196f3;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(33, 150, 243, 0.25);
}

.swiper-controls .btn-call i {
    animation: heartPulseSlow 2.2s infinite ease-in-out;
}

.swiper-controls .btn-control {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 71, 117, 0.05);
}

.swiper-controls .btn-pass {
    background: #fff;
    border: 1px solid rgba(255, 71, 117, 0.15);
    color: var(--text-muted);
}

.swiper-controls .btn-pass:hover {
    background: #ffeef2;
    color: var(--primary);
    transform: scale(1.1);
}

.swiper-controls .btn-like {
    background: rgba(255, 71, 117, 0.08);
    border: 1px solid rgba(255, 71, 117, 0.3);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(255, 71, 117, 0.1);
}

/* ─── BEATING HEART PULSE ON CONTROL LIKE BUTTON ─── */
.swiper-controls .btn-like i {
    animation: heartPulseSlow 1.8s infinite ease-in-out;
}

@keyframes heartPulseSlow {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.22); }
    30% { transform: scale(1.05); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}

.swiper-controls .btn-like:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 18px var(--primary-glow);
}

.swiper-controls .btn-control:active {
    transform: scale(0.9);
}

/* ─── IT'S A MATCH SCREEN OVERLAY ─── */
.match-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #fffdfd 0%, #ffeef2 100%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.match-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.match-overlay .match-title {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--text-main);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 2s infinite alternate;
}

.match-overlay .match-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2px;
    font-weight: 600;
}

.match-avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 0;
    position: relative;
    width: 100%;
}

.match-avatar-container .avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(255, 71, 117, 0.15);
    position: relative;
    z-index: 2;
}

.match-avatar-container .avatar.a-user {
    background: linear-gradient(135deg, #ffd1dc, #ff758c);
    transform: translateX(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.match-avatar-container .avatar.a-match {
    transform: translateX(-12px);
}

.match-avatar-container .heart-badge-mini {
    position: absolute;
    z-index: 5;
    background: var(--primary);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.68rem;
    animation: heartPulse 1s infinite alternate ease-in-out;
}

/* ─── COQUETTISH PRIVATE CHAT PREVIEW BUBBLE ─── */
.match-message-bubble {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 71, 117, 0.12);
    border-radius: 16px;
    padding: 10px 14px;
    margin: 5px 0 15px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(255, 71, 117, 0.05);
    position: relative;
    animation: bubbleSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.match-message-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-right: 1px solid rgba(255, 71, 117, 0.12);
    border-bottom: 1px solid rgba(255, 71, 117, 0.12);
    transform: rotate(45deg);
}

.match-message-bubble .sender-name {
    font-weight: 800;
    font-size: 0.72rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.match-message-bubble .message-text {
    font-size: 0.68rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.35;
}

@keyframes bubbleSlideIn {
    0% { transform: scale(0.8) translateY(10px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.match-overlay .match-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.match-overlay .btn-match-chat {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #fff !important;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 10px 0;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px var(--primary-glow);
    text-decoration: none;
}

.match-overlay .btn-match-chat:hover {
    transform: scale(1.03);
}

.match-overlay .btn-match-retry {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 71, 117, 0.2);
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.65rem;
    padding: 8px 0;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.match-overlay .btn-match-retry:hover {
    background: #ffeef2;
    color: var(--primary);
}

/* ─── TICKERS ─── */
.winner-ticker {
    background: rgba(255, 71, 117, 0.05);
    border-radius: 12px;
    padding: 5px 10px;
    font-size: 0.58rem;
    color: var(--primary);
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 71, 117, 0.1);
}

.home-indicator {
    width: 100px;
    height: 3px;
    background: rgba(255, 71, 117, 0.15);
    border-radius: 10px;
    margin: 4px auto 2px;
}

/* ─── MINIMAL FOOTER ─── */
footer {
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 1.5rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 700;
}

footer .love-tag {
    color: var(--primary);
}

/* ─── LIVE TOAST ─── */
.live-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    padding: 10px 16px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(255, 71, 117, 0.06);
    border: 1px solid var(--border-glass);
    z-index: 9997;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 300px;
    animation: toastIn 0.5s ease;
    transition: opacity 0.5s, transform 0.5s;
}

.live-toast.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.live-toast .toast-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.68rem;
    color: #fff;
    flex-shrink: 0;
}

.live-toast .toast-text {
    flex: 1;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.live-toast .toast-text strong {
    color: var(--text-main);
}

.live-toast .toast-close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 0.75rem;
    cursor: pointer;
}

@keyframes toastIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── RESPONSIVE STYLES ─── */
@media (max-width: 991px) {
    .hero { padding: 6rem 0 3rem; }
    .hero h1 { font-size: 2.6rem; }
    .phone-mockup {
        width: 250px;
        height: 500px;
        border-radius: 36px;
        padding: 8px;
    }
    .phone-notch {
        width: 90px;
        height: 22px;
        top: 10px;
    }
    .phone-screen { border-radius: 28px; }
    .status-bar { padding: 10px 14px 2px; font-size: 0.58rem; }
    .app-content { padding: 2px 10px 6px; }
}

@media (max-width: 767px) {
    .hero {
        padding: 5.5rem 0 2.5rem;
        text-align: center;
    }
    .hero p { margin: 0 auto 1.5rem; }
    .hero .hero-badge { margin-bottom: 1.2rem; }
    .hero .d-flex { justify-content: center; }
    .hero .security-logos { justify-content: center; }
    .phone-mockup {
        width: 220px;
        height: 440px;
        border-radius: 30px;
        padding: 6px;
        margin: 2rem auto 0;
    }
    .phone-screen { border-radius: 24px; }
    .status-bar { padding: 8px 10px 2px; }
    .live-toast {
        bottom: 15px;
        left: 10px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero .btn-download-primary { padding: 0.8rem 1.8rem; font-size: 0.95rem; }
    .live-toast { display: none !important; }
}

/* ─── LUCKYPAISA DOMAIN VERIFIED PARTNER BADGE ─── */
.partner-badge {
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.22);
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.05);
    animation: partnerPulse 3s infinite alternate ease-in-out;
}

@keyframes partnerPulse {
    0% { border-color: rgba(0, 230, 118, 0.18); box-shadow: 0 0 0 rgba(0, 230, 118, 0); }
    100% { border-color: rgba(0, 230, 118, 0.45); box-shadow: 0 0 10px rgba(0, 230, 118, 0.08); }
}

/* ─── Seductive side floating toast popup ─── */
.seductive-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 320px;
    background: rgba(26, 12, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 71, 117, 0.35);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 71, 117, 0.2);
    padding: 16px;
    z-index: 2000;
    transform: translateY(120%) scale(0.9);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    
    /* 3D context elements */
    transform-style: preserve-3d;
    perspective: 1000px;
}

.seductive-popup.show {
    animation: popupArrival 1.1s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
}

/* Seductive Side Pop Arrival Animations */

@keyframes popupArrival {
    0% {
        transform: translate3d(100px, 200px, -200px) rotateY(-45deg) rotateX(30deg) scale(0.6);
        opacity: 0;
        box-shadow: 0 0 0 rgba(255, 71, 117, 0);
    }
    70% {
        transform: translate3d(-10px, -10px, 20px) rotateY(10deg) rotateX(-5deg) scale(1.05);
        opacity: 1;
        box-shadow: 0 0 50px rgba(255, 71, 117, 0.8);
    }
    100% {
        transform: translate3d(0, 0, 0) rotateY(0) rotateX(0) scale(1);
        opacity: 1;
        box-shadow: 0 10px 30px rgba(255, 71, 117, 0.25);
    }
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 4px;
}

.popup-close-btn:hover {
    color: var(--primary);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.popup-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.online-indicator-ping {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #4faf4f;
    border: 2px solid rgba(26, 12, 18, 0.95);
    border-radius: 50%;
}

.online-indicator-ping::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid #4faf4f;
    animation: indicator-ping 1.5s infinite ease-out;
}

@keyframes indicator-ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.popup-user-info {
    display: flex;
    flex-direction: column;
}

.popup-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.popup-badge {
    background: rgba(255, 71, 117, 0.15);
    color: var(--primary);
    font-size: 0.68rem;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.popup-status {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
}

.popup-body {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.popup-bubble {
    font-size: 0.8rem;
    color: #ffd8e2;
    line-height: 1.4;
    font-style: italic;
}

.popup-footer {
    display: flex;
    margin-top: 4px;
}

.btn-popup-download {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #ff1f59 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 71, 117, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: popup-pulse 2s infinite alternate;
}

.btn-popup-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 71, 117, 0.5);
    color: #fff;
}

@keyframes popup-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

/* Mobile responsive popup adjustments */
@media (max-width: 991px) {
    /* Compact mockup card stacking translation offsets to prevent overlapping controls */
    .profile-card.p2 { transform: scale(0.94) translateY(5px) !important; }
    .profile-card.p3 { transform: scale(0.88) translateY(10px) !important; }
    .profile-card.p4 { transform: scale(0.82) translateY(15px) !important; }
    .profile-card.p5 { transform: scale(0.76) translateY(20px) !important; }
    .profile-card.p6 { transform: scale(0.70) translateY(25px) !important; }

    /* Compact text components to prevent overlapping */
    .profile-details {
        padding: 8px !important;
    }
    .profile-details .profile-bio {
        display: none !important; /* Hide bio on tablet/mobile viewport mockups to prevent vertical text expansion overlapping */
    }
    .profile-details .profile-name {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
    }
    .profile-details .profile-meta {
        font-size: 0.6rem !important;
        margin-top: 0px !important;
    }
    .profile-details .profile-tags {
        margin-top: 4px !important;
        gap: 3px !important;
    }
    .profile-details .tag {
        font-size: 0.45rem !important;
        padding: 1px 4px !important;
    }
    .profile-badges-row {
        gap: 3px !important;
        margin-bottom: 4px !important;
    }
    .badge-compat, .badge-status-pill, .badge-cam-pill {
        font-size: 0.5rem !important;
        padding: 1px 4px !important;
    }
    
    /* Compact mockup controls height and space */
    .swiper-controls {
        gap: 6px !important;
        margin-top: 2px !important;
    }
    .swiper-controls .btn-control {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.75rem !important;
    }
    .winner-ticker {
        font-size: 0.55rem !important;
        padding: 2px 4px !important;
        margin-top: 4px !important;
    }

    /* Compact match overlay components to prevent overflowing the phone mockup frame */
    .match-overlay {
        padding: 10px 14px !important;
    }
    .match-overlay .match-title {
        font-size: 1.2rem !important;
    }
    .match-overlay .match-sub {
        font-size: 0.6rem !important;
    }
    .match-avatar-container {
        margin: 8px 0 !important;
    }
    .match-avatar-container .avatar {
        width: 50px !important;
        height: 50px !important;
    }
    .match-avatar-container .avatar.a-user {
        font-size: 0.85rem !important;
    }
    .match-avatar-container .heart-badge-mini {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.55rem !important;
    }
    .match-message-bubble {
        padding: 6px 10px !important;
        margin: 4px 0 10px !important;
        border-radius: 12px !important;
    }
    .match-message-bubble .sender-name {
        font-size: 0.65rem !important;
    }
    .match-message-bubble .message-text {
        font-size: 0.6rem !important;
        line-height: 1.3 !important;
    }
    .match-overlay .match-cta {
        gap: 6px !important;
        margin-top: 4px !important;
    }
    .match-overlay .btn-match-chat {
        font-size: 0.7rem !important;
        padding: 7px 0 !important;
    }
    .match-overlay .btn-match-retry {
        font-size: 0.6rem !important;
        padding: 6px 0 !important;
    }
}

@media (max-width: 576px) {
    .seductive-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        box-shadow: 0 -5px 25px rgba(255, 71, 117, 0.25);
    }
    
    /* Navbar brand scaling & wrapping overrides */
    .navbar .container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .navbar-brand {
        display: flex !important;
        align-items: center !important;
        margin-right: 5px !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    .brand-text {
        margin-left: 6px !important;
        min-width: 0 !important;
    }

    .brand-name {
        font-size: 1.1rem !important;
        white-space: nowrap !important;
    }

    .brand-tagline {
        font-size: 0.5rem !important;
        letter-spacing: 0.2px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 110px !important;
    }

    .brand-logo-img {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
    }

    .ms-auto {
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }

    .btn-download-nav {
        padding: 0.38rem 0.7rem !important;
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        border-radius: 20px !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 375px) {
    .brand-tagline {
        display: none !important; /* Hide tagline on super narrow devices to keep button aligned */
    }
    .brand-name {
        font-size: 1rem !important;
    }
    .btn-download-nav {
        padding: 0.35rem 0.65rem !important;
        font-size: 0.6rem !important;
    }
}

/* ─── DYNAMIC ADMIN OVERRIDES ─── */
body.custom-cursor-disabled, body.custom-cursor-disabled * {
    cursor: auto !important;
}
body.custom-cursor-disabled a, body.custom-cursor-disabled button, body.custom-cursor-disabled [role="button"], body.custom-cursor-disabled input, body.custom-cursor-disabled select, body.custom-cursor-disabled textarea, body.custom-cursor-disabled .btn, body.custom-cursor-disabled .action-btn, body.custom-cursor-disabled .profile-card, body.custom-cursor-disabled .tag, body.custom-cursor-disabled .video-cam-btn, body.custom-cursor-disabled .boost {
    cursor: pointer !important;
}
