:root{color-scheme:dark;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;line-height:1.5;--primary: #e91e63;--primary-light: #f06292;--primary-dark: #c2185b;--accent: #ff6090;--bg: #0a0a0a;--surface: #1a1a2e;--surface-light: #252540;--text: #fafafa;--text-muted: rgba(255, 255, 255, .6);--success: #4caf50;--danger: #f44336}*{box-sizing:border-box}html,body,#root{margin:0;min-height:100vh;background:var(--bg);color:var(--text);overflow:hidden}#root{display:flex;flex-direction:column}.app{display:flex;flex-direction:column;height:100vh;max-width:480px;margin:0 auto;position:relative}.header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;background:var(--surface);border-bottom:1px solid rgba(255,255,255,.06);z-index:10}.header-logo{font-size:1.5rem;font-weight:700;background:linear-gradient(135deg,var(--primary),var(--accent));-webkit-background-clip:text;-webkit-text-fill-color:transparent;letter-spacing:-.02em}.header-actions{display:flex;gap:.75rem}.icon-btn{background:none;border:none;color:var(--text-muted);cursor:pointer;padding:.5rem;border-radius:50%;transition:all .2s;font-size:1.25rem;display:flex;align-items:center;justify-content:center}.icon-btn:hover{background:#ffffff14;color:var(--text)}.icon-btn.active{color:var(--primary)}.main-content{flex:1;overflow:hidden;position:relative}.swipe-container{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;padding:1rem}.swipe-card{position:absolute;width:calc(100% - 2rem);max-width:400px;height:calc(100% - 2rem);border-radius:1.25rem;overflow:hidden;cursor:grab;-webkit-user-select:none;user-select:none;transition:box-shadow .3s;box-shadow:0 8px 32px #0006}.swipe-card:active{cursor:grabbing}.card-image{width:100%;height:100%;object-fit:cover;pointer-events:none}.card-gradient{position:absolute;bottom:0;left:0;right:0;height:55%;background:linear-gradient(transparent,#000000d9);pointer-events:none}.card-info{position:absolute;bottom:0;left:0;right:0;padding:1.5rem;pointer-events:none}.card-name{font-size:1.75rem;font-weight:700;margin:0 0 .25rem;text-shadow:0 2px 8px rgba(0,0,0,.5)}.card-name span{font-weight:400;font-size:1.25rem;margin-left:.5rem;opacity:.9}.card-detail{display:flex;align-items:center;gap:.5rem;margin-bottom:.5rem;color:#ffffffd9;font-size:.9rem}.card-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.75rem}.card-tag{background:#ffffff26;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);padding:.3rem .75rem;border-radius:2rem;font-size:.8rem;border:1px solid rgba(255,255,255,.1)}.swipe-overlay{position:absolute;top:1.5rem;padding:.75rem 1.5rem;border-radius:.5rem;font-size:1.5rem;font-weight:800;letter-spacing:.05em;border:4px solid;opacity:0;transition:opacity .15s;z-index:5;pointer-events:none}.swipe-overlay.like{right:1.5rem;color:var(--success);border-color:var(--success);transform:rotate(15deg)}.swipe-overlay.nope{left:1.5rem;color:var(--danger);border-color:var(--danger);transform:rotate(-15deg)}.swipe-overlay.visible{opacity:1}.actions{display:flex;justify-content:center;align-items:center;gap:1.25rem;padding:1rem 1.25rem 1.5rem;background:var(--surface);border-top:1px solid rgba(255,255,255,.06)}.action-btn{border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;box-shadow:0 4px 12px #0000004d}.action-btn.small{width:3rem;height:3rem;font-size:1.25rem;background:var(--surface-light);color:var(--text-muted)}.action-btn.small:hover{transform:scale(1.1);color:var(--text)}.action-btn.large{width:3.75rem;height:3.75rem;font-size:1.5rem}.action-btn.nope{background:var(--surface-light);color:var(--danger)}.action-btn.nope:hover{background:var(--danger);color:#fff;transform:scale(1.1)}.action-btn.like{background:var(--surface-light);color:var(--success)}.action-btn.like:hover{background:var(--success);color:#fff;transform:scale(1.1)}.action-btn.superlike{background:var(--surface-light);color:#2196f3}.action-btn.superlike:hover{background:#2196f3;color:#fff;transform:scale(1.1)}.matches-view{height:100%;overflow-y:auto;padding:1rem 1.25rem}.section-title{font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--text-muted);margin:1.5rem 0 .75rem}.section-title:first-child{margin-top:0}.matches-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem}.match-card{position:relative;border-radius:1rem;overflow:hidden;aspect-ratio:3/4;cursor:pointer;transition:transform .2s}.match-card:hover{transform:scale(1.03)}.match-card img{width:100%;height:100%;object-fit:cover}.match-card-overlay{position:absolute;bottom:0;left:0;right:0;padding:.75rem;background:linear-gradient(transparent,#000c)}.match-card-name{font-size:.9rem;font-weight:600}.match-new-badge{position:absolute;top:.5rem;right:.5rem;width:.6rem;height:.6rem;background:var(--primary);border-radius:50%;border:2px solid var(--surface)}.messages-list{display:flex;flex-direction:column}.message-item{display:flex;align-items:center;gap:.75rem;cursor:pointer;transition:background .2s;border-radius:.75rem;padding:.75rem .5rem}.message-item:hover{background:#ffffff08}.message-avatar{width:3.5rem;height:3.5rem;border-radius:50%;object-fit:cover;flex-shrink:0}.message-content{flex:1;min-width:0}.message-name{font-weight:600;font-size:1rem}.message-preview{color:var(--text-muted);font-size:.875rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.message-time{color:var(--text-muted);font-size:.75rem;flex-shrink:0}.unread-dot{width:.6rem;height:.6rem;background:var(--primary);border-radius:50%;flex-shrink:0}.chat-view{display:flex;flex-direction:column;height:100%}.chat-header{display:flex;align-items:center;gap:.75rem;padding:.75rem 1rem;background:var(--surface);border-bottom:1px solid rgba(255,255,255,.06)}.chat-back{background:none;border:none;color:var(--text);cursor:pointer;font-size:1.25rem;padding:.25rem}.chat-avatar{width:2.5rem;height:2.5rem;border-radius:50%;object-fit:cover}.chat-name{font-weight:600;flex:1}.chat-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.5rem}.chat-bubble{max-width:80%;padding:.75rem 1rem;border-radius:1.25rem;font-size:.95rem;line-height:1.4}.chat-bubble.sent{align-self:flex-end;background:var(--primary);border-bottom-right-radius:.25rem}.chat-bubble.received{align-self:flex-start;background:var(--surface-light);border-bottom-left-radius:.25rem}.chat-time{font-size:.7rem;color:var(--text-muted);margin-top:.25rem}.chat-time.sent{text-align:right}.chat-input-area{display:flex;gap:.5rem;padding:.75rem 1rem;background:var(--surface);border-top:1px solid rgba(255,255,255,.06)}.chat-input{flex:1;background:var(--surface-light);border:1px solid rgba(255,255,255,.1);border-radius:2rem;padding:.75rem 1rem;color:var(--text);font-size:.95rem;outline:none}.chat-input:focus{border-color:var(--primary)}.chat-send{background:var(--primary);border:none;color:#fff;width:2.75rem;height:2.75rem;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.1rem;transition:background .2s}.chat-send:hover{background:var(--primary-dark)}.profile-view{height:100%;overflow-y:auto;padding:1.5rem 1.25rem}.profile-header{display:flex;flex-direction:column;align-items:center;text-align:center;margin-bottom:2rem}.profile-avatar{width:7rem;height:7rem;border-radius:50%;object-fit:cover;border:3px solid var(--primary);margin-bottom:1rem}.profile-name{font-size:1.5rem;font-weight:700;margin:0}.profile-age{color:var(--text-muted);font-size:1rem}.profile-section{background:var(--surface);border-radius:1rem;padding:1.25rem;margin-bottom:1rem}.profile-section-title{font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--text-muted);margin-bottom:.75rem}.profile-bio{color:var(--text);font-size:.95rem;line-height:1.6}.profile-tags{display:flex;flex-wrap:wrap;gap:.5rem}.profile-tag{background:var(--surface-light);padding:.4rem .85rem;border-radius:2rem;font-size:.85rem;color:var(--text)}.profile-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;text-align:center}.profile-stat-value{font-size:1.5rem;font-weight:700;color:var(--primary)}.profile-stat-label{font-size:.8rem;color:var(--text-muted)}.match-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#000c;display:flex;align-items:center;justify-content:center;z-index:100;animation:fadeIn .3s}.match-modal{background:var(--surface);border-radius:1.5rem;padding:2.5rem 2rem;text-align:center;max-width:340px;width:90%;animation:scaleIn .4s cubic-bezier(.34,1.56,.64,1)}.match-modal h2{font-size:2rem;background:linear-gradient(135deg,var(--primary),var(--accent));-webkit-background-clip:text;-webkit-text-fill-color:transparent;margin:0 0 1rem}.match-modal-avatars{display:flex;justify-content:center;gap:-1rem;margin-bottom:1.5rem}.match-modal-avatar{width:6rem;height:6rem;border-radius:50%;object-fit:cover;border:3px solid var(--primary)}.match-modal-avatar:last-child{margin-left:-1.5rem}.match-modal p{color:var(--text-muted);margin-bottom:1.5rem}.match-modal-btns{display:flex;flex-direction:column;gap:.75rem}.btn-primary{background:linear-gradient(135deg,var(--primary),var(--accent));border:none;color:#fff;padding:.85rem;border-radius:2rem;font-size:1rem;font-weight:600;cursor:pointer;transition:transform .2s,box-shadow .2s}.btn-primary:hover{transform:scale(1.03);box-shadow:0 4px 20px #e91e6366}.btn-secondary{background:none;border:1px solid rgba(255,255,255,.15);color:var(--text);padding:.85rem;border-radius:2rem;font-size:1rem;cursor:pointer;transition:background .2s}.btn-secondary:hover{background:#ffffff0d}.empty-state{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;text-align:center;padding:2rem;color:var(--text-muted)}.empty-state-icon{font-size:3rem;margin-bottom:1rem;opacity:.5}.empty-state h3{margin:0 0 .5rem;color:var(--text)}.bottom-nav{display:flex;background:var(--surface);border-top:1px solid rgba(255,255,255,.06);padding:.5rem 0}.nav-item{flex:1;display:flex;flex-direction:column;align-items:center;gap:.2rem;background:none;border:none;color:var(--text-muted);cursor:pointer;padding:.5rem;transition:color .2s;font-size:.7rem}.nav-item:hover{color:var(--text)}.nav-item.active{color:var(--primary)}.nav-icon{font-size:1.35rem}.nav-badge{position:relative}.nav-badge:after{content:"";position:absolute;top:-2px;right:-4px;width:.5rem;height:.5rem;background:var(--primary);border-radius:50%;border:2px solid var(--surface)}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes scaleIn{0%{transform:scale(.8);opacity:0}to{transform:scale(1);opacity:1}}::-webkit-scrollbar{width:4px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:#ffffff1a;border-radius:4px}
