.elementor-6631 .elementor-element.elementor-element-4f11e07{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cc53b94 *//* ===== RESET ===== */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    width: 100vw; height: 100vh; height: -webkit-fill-available;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a1a; color: #fff; overflow: hidden; position: relative;
}

/* ===== FULL VIDEO BACKGROUND ===== */
.video-bg-full {
    position: fixed; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; will-change: transform;
}
.video-overlay-full {
    position: fixed; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,26,0.25) 0%,
        rgba(10,10,26,0.45) 35%,
        rgba(18,18,42,0.75) 100%
    );
    z-index: 1; pointer-events: none;
}

/* ===== OVERLAY CONTAINER ===== */
.app-overlay {
    position: relative; z-index: 10;
    width: 100%; height: 100%; height: -webkit-fill-available;
    display: flex; flex-direction: column;
    padding: env(safe-area-inset-top, 12px) 16px 0;
}

/* ===== HEADER ===== */
.simple-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4px 10px; gap: 8px; flex-shrink: 0;
}
.brand-inline {
    display: flex; align-items: center; gap: 6px;
    background: rgba(18,18,42,0.6); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 8px 12px;
}
.brand-emoji { font-size: 16px; }
.brand-text { font-size: 12px; font-weight: 600; white-space: nowrap; }

.user-badge-compact {
    display: flex; align-items: center; gap: 4px;
    background: rgba(18,18,42,0.6); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
    padding: 7px 11px;
}
.user-badge-compact .name { color: #fff; font-size: 12px; font-weight: 600; }
.user-badge-compact .comma { color: rgba(255,255,255,0.4); font-size: 12px; }
.user-badge-compact .city { color: rgba(255,255,255,0.9); font-size: 11px; font-weight: 500; }
.user-badge-compact .flag { font-size: 13px; }

/* ===== SPACER ===== */
.flex-spacer { flex: 1; min-height: 30px; }

/* ===== BOTTOM STACK ===== */
.bottom-stack {
    flex-shrink: 0;
    display: flex; flex-direction: column; align-items: center;
    gap: 12px;
    padding: 10px 0 calc(14px + env(safe-area-inset-bottom, 0));
    width: 100%;
    background: transparent;
}

/* ===== ONLINE STATUS ===== */
.online-status-compact {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(30,58,138,0.25); border: 1px solid rgba(96,165,250,0.3);
    border-radius: 12px; width: fit-content;
}
.online-status-compact .emojis { font-size: 18px; }
.online-status-compact .count { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.online-status-compact .count strong { color: #60a5fa; font-weight: 600; }
.live-dot {
    width: 7px; height: 7px; background: #22c55e; border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    70% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ===== COMPACT FILTERS ===== */
.filters-compact {
    width: 100%; max-width: 360px;
    display: flex; flex-direction: column; gap: 8px;
}
.filter-row { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.filter-label-mini {
    color: rgba(255,255,255,0.7); font-size: 10px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px;
}
.filter-chips-mini {
    display: flex; gap: 5px; flex-wrap: wrap; justify-content: center;
}
.filter-chip-mini {
    display: flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px; padding: 6px 10px;
    color: rgba(255,255,255,0.88); font-size: 12px; font-weight: 500;
    cursor: pointer; transition: all 0.15s ease; min-height: 30px;
    white-space: nowrap; /* ✅ Prevents "United States" from wrapping */
}
.filter-chip-mini:active { transform: scale(0.97); }
.filter-chip-mini.active {
    background: rgba(96,165,250,0.3); 
    border-color: rgba(96,165,250,0.6);
    color: #fff; 
    font-weight: 600;
}
/* 🌸 Pink variant for Girls filter only */
.filter-chip-mini[data-filter="girls"].active {
    background: rgba(236,72,153,0.35); 
    border-color: rgba(249,115,22,0.5);
    color: #fff;
}

/* ===== COMPACT CTA BUTTON ===== */
.start-chat-btn-compact {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1px; /* ✅ Reduced from 3px to tighten text spacing */
    background: linear-gradient(135deg, #fff740 0%, #ffdd00 100%);
    color: #000; border: none; border-radius: 14px;
    padding: 10px 18px;
    cursor: pointer; position: relative; overflow: hidden;
    animation: pulse-glow-compact 2s ease-in-out infinite;
    transition: transform 0.12s ease;
    width: 100%; max-width: 300px; min-height: 44px;
}
.start-chat-btn-compact:active { transform: scale(0.985); animation: none; }
.btn-text { font-size: 14px; font-weight: 700; }
.btn-subtext { font-size: 10px; font-weight: 500; opacity: 0.9; }

@keyframes pulse-glow-compact {
    0%, 100% { box-shadow: 0 5px 18px rgba(255,247,64,0.35); }
    50% { box-shadow: 0 8px 24px rgba(255,247,64,0.55); }
}
.loading-spinner-mini {
    width: 14px; height: 14px;
    border: 2px solid rgba(0,0,0,0.25); border-top-color: #000;
    border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== UTILS ===== */
.brand-text, .user-badge-compact, .count { user-select: text; -webkit-user-select: text; }
.filter-chip-mini:focus-visible, .start-chat-btn-compact:focus-visible {
    outline: 2px solid #60a5fa; outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@supports (padding: max(0px)) {
    .app-overlay { padding-top: max(env(safe-area-inset-top, 12px), 12px); }
}/* End custom CSS */