/* ==============================
   GLOBAL
============================== */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 20% 20%, #111827 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, #1e1b4b 0%, transparent 40%),
        #0b0b0f;
    color: white;
    -webkit-font-smoothing: antialiased;
}

.hidden {
    display: none !important;
}


/* ==============================
   CLEAN HEADER LAYOUT
============================== */

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(to right, #0f111a, #111827);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.header-left,
.header-center,
.header-right {
    display: flex;
    align-items: center;
}

.header-center {
    flex: 1;
    justify-content: center;
}

.brand-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
	cursor: pointer;
}
.brand-block:hover .brand-logo {
    filter: brightness(1.2);
}
.brand-logo {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 11px;
    opacity: 0.6;
    margin: 0;
    margin-top: -4px;
}

.status-block {
    text-align: center;
    min-width: 220px;
}

#status {
    font-weight: 600;
    font-size: 14px;
}

.search-bar {
    margin-top: 6px;
    height: 4px;
    width: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

#headerSearchBar,
#heroSearchBar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,#8b5cf6,#ec4899);
    transition: width 0.3s ease;
}
/* ==============================
   SETUP GRID LAYOUT
============================== */

.setup-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:60px;
    margin-bottom:30px;
}
/* Account Status */

.account-status {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.account-status.guest {
    background: #1e1e26;
    color: #aaa;
}

.account-status.member {
    background: rgba(14,165,233,0.15);
    color: #60a5fa;
}

.account-status.premium {
    background: linear-gradient(45deg,#9333ea,#ec4899);
    color: white;
}

.sound-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white;
}

/* ==============================
   CARD
============================== */
@media (max-width: 800px) {

.setup-grid{
    grid-template-columns: 1fr;
}

.card{
    width: 420px;
}

}
.card {
    width: 100%;
    max-width: 920px;
    margin: 60px auto;
    padding: 40px;
    background: #14141a;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
	box-sizing: border-box;

}

/* ==============================
   TITLES
============================== */

.section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin: 30px 0 12px;
}

/* ==============================
   FORM ELEMENTS
============================== */

.form-row {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

select,
#interestInput,
#input {
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    border: none;
    background: #1e1e26;
    color: white;
    outline: none;
    font-size: 14px;
}

select:focus,
#interestInput:focus,
#input:focus {
    box-shadow: 0 0 0 2px #0ea5e9;
}

select:disabled,
input:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==============================
   PREMIUM CARD
============================== */

.premium-card {
    padding: 26px;
    border-radius: 14px;
    background: rgba(147,51,234,0.05);
    border: 1px solid rgba(147,51,234,0.25);
    margin-bottom: 20px;
    transition: 0.3s;
}


.premium-card:hover {
    border-color: rgba(236,72,153,0.4);
}

/* ==============================
   TAG SYSTEM
============================== */

.tag-input-container {
    background: #181820;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #2a2a35;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    position: relative;
    padding-bottom: 28px;
}

.tag {
    background: #1f2937;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: #d1d5db;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag span {
    cursor: pointer;
    opacity: 0.6;
}

.tag span:hover {
    opacity: 1;
}

.tag-counter {
    position: absolute;
    bottom: 6px;
    right: 10px;
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==============================
   BUTTONS
============================== */

.primary-btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: none;
    background: #0ea5e9;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: 0.2s;
}

.primary-btn:hover {
    background: #0284c7;
}

.upgrade-btn {
    background: linear-gradient(45deg,#9333ea,#ec4899);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    background-size: 200% 200%;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.login-btn {
    background: #2a2a35;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    width: 100%;
    cursor: pointer;
}

/* ==============================
   CHAT AREA
============================== */

#chat-container {
    max-width: 700px;
    height: calc(100vh - 80px);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#chatMatchInfo {
    font-size: 13px;
    opacity: 0.8;
    text-align: center;
    width: 100%;
}

#messages {
    flex: 1;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==============================
   CHAT BUBBLES
============================== */

.bubble {
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 70%;
    font-size: 14px;
    line-height: 1.4;
    animation-duration: 0.25s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    backdrop-filter: blur(6px);
}

.you {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    box-shadow: 0 4px 12px rgba(14,165,233,0.3);
    align-self: flex-end;
    animation-name: slideInRight;
}

.stranger {
    background: rgba(31,41,55,0.85);
    border: 1px solid rgba(255,255,255,0.05);
    align-self: flex-start;
    animation-name: slideInLeft;
}
/* ==============================
   OMVIBE+ GLOW BADGE
============================== */

.premium-badge-inline {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    margin-right: 6px;
    border-radius: 999px;

    background: rgba(236,72,153,0.15);
    color: #ec4899;
    border: 1px solid rgba(236,72,153,0.35);

    box-shadow: none;
}

@keyframes badgeGlow {
    from {
        box-shadow:
            0 0 6px rgba(139,92,246,0.6),
            0 0 12px rgba(236,72,153,0.4);
    }
    to {
        box-shadow:
            0 0 10px rgba(139,92,246,0.9),
            0 0 20px rgba(236,72,153,0.8);
    }
}
/* ==============================
   INPUT AREA
============================== */

#input-area {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#input {
    flex: 1;
    padding: 13px;
    border-radius: 12px;
    border: none;
    background: #1e1e26;
    color: white;
    font-size: 14px;
}

#sendBtn {
    padding: 13px 18px;
    border-radius: 12px;
    border: none;
    background: #0ea5e9;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

#sendBtn:hover {
    background: #0284c7;
}

/* ==============================
   CONTROLS
============================== */

#controls {
    display: flex;
    gap: 10px;
}

#controls button {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

/* ==============================
   SUBTLE REPORT BUTTON
============================== */

.report-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    cursor: pointer;
    transition: 0.25s ease;
    opacity: 0.6;
}

.report-btn:hover {
    opacity: 1;
    color: #ef4444;
    border-color: rgba(239,68,68,0.6);
    background: rgba(239,68,68,0.08);
}

.report-btn::after {
    content: "Report";
    position: absolute;
    top: -28px;
    right: 0;
    background: #111827;
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
}

.report-btn:hover::after {
    opacity: 1;
}
/* ==============================
   STOP SEARCH
============================== */

#stopSearchBtn {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #ccc;
    transition: 0.2s ease;
    z-index: 40;
}

#stopSearchBtn:hover {
    background: rgba(255,255,255,0.12);
}

/* ==============================
   MODAL
============================== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

body.modal-open {
    overflow: hidden;
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #14141a, #101018);
    padding: 48px 42px;
    border-radius: 24px;
    width: 380px;
    max-width: 90%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.05);
    animation: modalFade 0.25s ease-out;
    display: flex;
    flex-direction: column;
    z-index: 10000;
    backdrop-filter: blur(20px);
}

.modal-content h3 {
    font-size: 26px;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg,#9333ea,#ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.modal-note {
    margin: 15px 0;
    opacity: 0.7;
}

/* ==============================
   PREMIUM MODAL INPUT UPGRADE
============================== */

.modal-content input {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px 20px;
    font-size: 15px;
    color: white;
    transition: all 0.25s ease;
    outline: none;
}

/* Placeholder better contrast */
.modal-content input::placeholder {
    color: rgba(255,255,255,0.45);
}

/* Premium focus state */
.modal-content input:focus {
    border-color: rgba(147,51,234,0.6);
    box-shadow:
        0 0 0 3px rgba(147,51,234,0.25),
        0 12px 35px rgba(147,51,234,0.15);
    transform: translateY(-1px);
}

/* Slight hover refinement */
.modal-content input:hover {
    border-color: rgba(255,255,255,0.15);
}

.modal-buttons {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.modal-buttons button {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

#confirmStopBtn {
    background: #ef4444;
    color: white;
}

#confirmStopBtn:hover {
    background: #dc2626;
}

#cancelStopBtn {
    background: #2a2a35;
    color: white;
}

#cancelStopBtn:hover {
    background: #3a3a48;
}

.modal-submit {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    border-radius: 18px;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(14,165,233,0.25);
    position: relative;
    overflow: hidden;
	color: white !important;
	
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(14,165,233,0.35);
}

.modal-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        transparent 30%,
        rgba(255,255,255,0.2),
        transparent 70%);
    transform: translateX(-100%);
    transition: 0.6s ease;
}

.modal-submit:hover::after {
    transform: translateX(100%);
}

.modal-cancel {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 16px;
    font-weight: 600;
    transition: 0.2s ease;
}

.modal-cancel:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* ==============================
   REPORT MODAL CLEAN ALIGNMENT
============================== */

.report-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 30px;
}

.report-options label {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    cursor: pointer;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.25s ease;

    box-sizing: border-box;   
    overflow: hidden;         
}

.report-options label:hover {
    background: rgba(147,51,234,0.08);
    border-color: rgba(147,51,234,0.3);
}

/* Make radio clean + aligned */
.report-options input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    position: relative;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Inner dot */
.report-options input[type="radio"]:checked {
    border-color: #9333ea;
}

.report-options input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: linear-gradient(45deg,#9333ea,#ec4899);
}

/* ==============================
   SEARCH HERO (RESTORED)
============================== */

.search-hero {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0.95;
    pointer-events: none;
    z-index: 5;
}

.pulse-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #4e7cff, #2b3cff);
    margin: 0 auto 15px;
    animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(78,124,255, 0.6); }
    70% { box-shadow: 0 0 0 25px rgba(78,124,255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(78,124,255, 0); }
}

.search-text {
    font-size: 15px;
    color: #aaa;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* Progress Bar */

.search-progress {
    width: 140px;
    height: 4px;
    background: #2a2a35;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}
/* ==============================
   SEARCH PARTICLE SHIMMER
============================== */

.search-hero::before {
    content: "";
    position: absolute;
    inset: -100px;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 70% 40%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1.5px 1.5px at 80% 80%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 10% 60%, rgba(255,255,255,0.35), transparent);
    background-repeat: no-repeat;
    animation: shimmerFloat 12s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

@keyframes shimmerFloat {
    from { transform: translateY(0px); }
    to   { transform: translateY(-40px); }
}

/* Subtle ambient glow while searching */

body.searching-active #chat-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(78,124,255,0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    transition: 0.4s ease;
}
/* ==============================
   PREMIUM CHAT BUBBLE UPGRADE
============================== */

/* Base premium bubble */
.bubble.premium {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,215,0,0.25);
    box-shadow:
        0 4px 18px rgba(255,215,0,0.08),
        inset 0 0 0 1px rgba(255,215,0,0.05);
    backdrop-filter: blur(10px);
}

/* Subtle animated gold edge */
.bubble.premium::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        120deg,
        rgba(255,215,0,0.6),
        rgba(255,105,180,0.4),
        rgba(255,215,0,0.6)
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.35;
    pointer-events: none;
    animation: premiumBorderFlow 6s linear infinite;
}

@keyframes premiumBorderFlow {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}
/* ==============================
   PREMIUM CHAT (SUBTLE VERSION)
============================== */

.bubble.premium {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* subtle gold accent line */
.bubble.premium::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(#ffd700, #ffb300);
    opacity: 0.7;
}

/* smaller badge */
.premium-badge-inline {
    font-size: 11px;
    font-weight: 600;
    color: #ffd700;
    margin-right: 6px;
    opacity: 0.8;
}

.premium-context {
    font-size: 14px;
    color: #aaa;
    margin-top: -10px;
    margin-bottom: 25px;
    text-align: center;
}

.toast{
position:fixed;
bottom:30px;
left:50%;
transform:translateX(-50%);
background:#111827;
color:white;
padding:14px 20px;
border-radius:10px;
opacity:0;
animation:toastIn .3s forwards;
}

@keyframes toastIn{
from{opacity:0;transform:translate(-50%,20px)}
to{opacity:1;transform:translate(-50%,0)}
}

.go-btn{
display:inline-block;
margin-top:20px;
padding:12px 24px;
border-radius:12px;
background:#0ea5e9;
color:white;
text-decoration:none;
font-weight:600;
transition:.2s;
}

.go-btn:hover{
background:#0284c7;
}
/* ==============================
   CAPTCHA FIX
============================== */

.captcha-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    margin:16px 0 8px;
	margin-top:6px;
}

.captcha-wrapper iframe{
    width:100% !important;
    max-width:320px;
}

/* keeps alignment with input fields */

#turnstileWidget{
    width:100%;
    display:flex;
    justify-content:center;
	max-width:100%;
}
.auth-section{
    margin-top:10px;
}
#authForm input{
    width:100%;
    box-sizing:border-box;
}
#authForm{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.spinner-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:9999;
  animation:fadeIn 0.2s ease;
}

.spinner{
  width:40px;
  height:40px;
  border:4px solid #444;
  border-top:4px solid #6c5cff;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
/* logout danger button */
#confirmLogoutBtn{
    background: linear-gradient(135deg,#ef4444,#dc2626);
    box-shadow: 0 10px 25px rgba(239,68,68,0.25);
}

#confirmLogoutBtn:hover{
    box-shadow: 0 14px 35px rgba(239,68,68,0.35);
}
.premium-features{
    list-style:none;
    padding:0;
    margin:20px 0;
    line-height:1.8;
    opacity:.9;
}

.premium-features li::before{
    content:"✓";
    color:#10b981;
    margin-right:8px;
}

.premium-price{
    font-size:22px;
    font-weight:700;
    margin-top:10px;
	color:#c084fc;
}

.premium-price span{
    font-size:14px;
    opacity:.6;
    margin-left:6px;
}

.premium-trust{
    font-size:12px;
    opacity:.55;
    margin-top:12px;
}
.premium-highlight{
    margin:14px 0;
    font-size:13px;
    color:#facc15;
    opacity:.9;
}
.premium-success h3{
    animation: premiumGlow 2s ease infinite alternate;
}

@keyframes premiumGlow{
    from{ text-shadow:0 0 5px #9333ea; }
    to{ text-shadow:0 0 15px #ec4899; }
}

.forgot-link{
    display:block;
    margin-top:10px;
    font-size:13px;
    color:#0ea5e9;
    cursor:pointer;
    text-decoration:none;
}

.forgot-link:hover{
    text-decoration:underline;
}

.center-page{
    display:flex;
    align-items:center;
    justify-content:center;
    height:100vh;
}

.reset-card{
    width:340px;
    text-align:center;
}

.logo{
    margin-bottom:5px;
}

.subtext{
    opacity:.7;
    font-size:14px;
    margin-bottom:15px;
}

.error{
    margin-top:10px;
    color:#f87171;
    font-size:13px;
}

.primary-btn{
    width:100%;
    margin-top:20px;
}
.action-group{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:25px;
}

.action-divider{
    height:1px;
    background:rgba(255,255,255,0.06);
    margin:4px 0;
}
/* ==============================
   FOOTER
============================== */

.site-footer{
    margin-top:60px;
    padding:40px 20px;
    border-top:1px solid rgba(255,255,255,0.05);
    background:linear-gradient(to top,#0b0b0f,#0f111a);
}

.footer-inner{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.footer-logo{
    font-size:18px;
    font-weight:700;
    background:linear-gradient(135deg,#8b5cf6,#ec4899);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.footer-tagline{
    font-size:12px;
    opacity:.6;
    margin-top:6px;
}

.footer-links{
    margin-top:18px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.footer-links a{
    font-size:13px;
    color:#9ca3af;
    text-decoration:none;
    transition:.2s ease;
}

.footer-links a:hover{
    color:#0ea5e9;
}

.footer-copy{
    margin-top:20px;
    font-size:12px;
    opacity:.45;
}
.footer-trust{
margin-top:18px;
font-size:12px;
opacity:.55;
line-height:1.6;
max-width:520px;
margin-left:auto;
margin-right:auto;
}

.footer-trust p{
margin:6px 0;
}
@media (max-width: 768px) {

body.chat-active footer {
    display: none;
}
.app-header {
	position:sticky
}
body.chat-active{
	display:flex;
	flex-direction:column;
	height:100dvh;
	overflow:hidden;
}
  #chat-container {
      max-width: 100%;
      width: 100%;
      margin: 0;
      padding: 12px;
      height: calc(100dvh - 64px);
      box-sizing: border-box;
  }
}

