@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-pink: #ff1493;
    --primary-gold: #ffd700;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-secondary: #252525;
    --text-white: #ffffff;
    --text-gray: #888888;
    --success-green: #00ff88;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

.app-container {
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    padding-bottom: 90px;
}

.home-container, .profile-container, .negotiations-container {
    padding: 20px 15px;
}

.logo-rings {
    width: 80px;
    height: 50px;
    position: relative;
    margin: 0 auto 10px;
}

.logo-rings::before, .logo-rings::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: ring-pulse 2s infinite ease-in-out;
}

.logo-rings::before { left: 8px; }
.logo-rings::after { right: 8px; animation-delay: 0.5s; }

@keyframes ring-pulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    text-align: center;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 20, 147, 0.3); }
    to { text-shadow: 0 0 40px rgba(255, 20, 147, 0.7); }
}

.tagline {
    color: var(--primary-gold);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 5px;
}

.welcome-text {
    text-align: center;
    color: var(--text-gray);
    margin-top: 5px;
    font-size: 0.85rem;
}

.fade-in {
    animation: slide-up 0.5s ease-out both;
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 20px;
    margin: 15px 0;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 20, 147, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-pink);
}

.stat-title {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
}

.stat-badge.positive {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-green);
}

.stat-badge .badge-icon {
    width: 12px;
    height: 12px;
}

.stat-period {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    margin-top: 20px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-pink), rgba(255, 20, 147, 0.6));
    border-radius: 6px 6px 0 0;
    transition: height 0.5s ease-out, transform 0.2s;
    cursor: pointer;
    min-height: 10%;
}

.chart-bar:hover {
    filter: brightness(1.2);
    transform: scaleY(1.05);
    transform-origin: bottom;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.chart-label {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-gray);
}

.vip-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 20px;
    padding: 20px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.vip-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.vip-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.vip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffaa00 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--bg-dark);
}

.vip-info { flex: 1; }
.vip-title { font-size: 1.3rem; font-weight: 700; }
.vip-subtitle { color: var(--text-gray); font-size: 0.85rem; }

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-gold);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-star {
    width: 12px;
    height: 12px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 20, 147, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.4);
}

.cta-icon, .cta-arrow {
    width: 20px;
    height: 20px;
}

.stats-row {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.mini-stat {
    flex: 1;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.mini-stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-icon {
    background: rgba(255, 215, 0, 0.2);
}

.token-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-gold);
}

.nego-icon {
    background: rgba(255, 20, 147, 0.2);
}

.nego-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-pink);
}

.mini-stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.mini-stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.quick-actions {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.quick-action {
    flex: 1;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.quick-action-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.quick-action-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-pink);
}

.quick-action span {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: linear-gradient(to top, var(--bg-dark) 0%, rgba(10, 10, 10, 0.95) 100%);
    display: flex;
    justify-content: space-around;
    padding: 12px 0 18px;
    border-top: 1px solid var(--bg-secondary);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-gray);
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 12px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.nav-label {
    font-size: 0.65rem;
    font-weight: 500;
}

.nav-item.active {
    color: var(--primary-pink);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 0 0 3px 3px;
}

.nav-item:hover {
    color: var(--primary-pink);
    transform: scale(1.05);
}

.nav-badge {
    position: absolute;
    top: 0;
    right: 5px;
    background: var(--primary-pink);
    color: white;
    font-size: 0.6rem;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.discovery-container {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.discovery-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.token-display {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
}

.token-icon-small {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
}

.card-stack {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 450px;
    margin: 10px 0;
}

.profile-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: 25px;
    overflow: hidden;
    cursor: grab;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.profile-card:active { cursor: grabbing; }
.profile-card.swiping-left { animation: swipe-left 0.5s forwards; }
.profile-card.swiping-right { animation: swipe-right 0.5s forwards; }

@keyframes swipe-left {
    to { transform: translateX(-150%) rotate(-30deg); opacity: 0; }
}

@keyframes swipe-right {
    to { transform: translateX(150%) rotate(30deg); opacity: 0; }
}

.profile-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.profile-info {
    padding: 15px 20px;
    background: linear-gradient(to top, var(--bg-card) 60%, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.objective-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-pink);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.objective-badge svg {
    width: 14px;
    height: 14px;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-badge {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.action-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn svg {
    width: 28px;
    height: 28px;
}

.action-btn.dislike {
    background: var(--bg-secondary);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.action-btn.dislike svg { stroke: #ff4444; }

.action-btn.superlike {
    background: var(--bg-secondary);
    width: 55px;
    height: 55px;
}

.action-btn.superlike svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-gold);
}

.action-btn.like {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    box-shadow: 0 5px 30px rgba(255, 20, 147, 0.4);
}

.action-btn.like svg { fill: white; }

.action-btn:hover { transform: scale(1.15); }
.action-btn:active { transform: scale(0.95); }

.match-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.match-overlay.active { display: flex; }

.match-popup {
    background: var(--bg-dark);
    border: 3px solid var(--primary-gold);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    max-width: 350px;
    position: relative;
    animation: popup-bounce 0.5s ease;
}

@keyframes popup-bounce {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
}

.close-popup svg { width: 24px; height: 24px; }

.match-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(255, 20, 147, 0.2); }
}

.match-icon svg { width: 35px; height: 35px; fill: white; }

.match-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.match-profiles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.match-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    object-fit: cover;
    animation: float 2s infinite ease-in-out;
}

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

.match-connector {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-connector svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
    fill: none;
}

.match-subtitle {
    color: var(--text-gray);
    margin: 15px 0;
}

.compatibility-score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.score-icon {
    width: 16px;
    height: 16px;
}

.match-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.cta-token {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
}

.match-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 30px rgba(255, 20, 147, 0.4);
}

.match-dismiss {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    margin-top: 15px;
    font-size: 0.85rem;
}

.page-header {
    text-align: center;
    margin-bottom: 20px;
}

.page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title-icon {
    width: 28px;
    height: 28px;
}

.page-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.filter-tab {
    background: var(--bg-card);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--text-gray);
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.filter-tab.active {
    background: var(--primary-pink);
    color: white;
}

.conversation-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conversation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.conversation-item:hover {
    transform: translateX(5px);
    background: var(--bg-secondary);
}

.conversation-item.unread {
    border-left: 3px solid var(--primary-pink);
}

.avatar-wrapper {
    position: relative;
}

.conversation-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.verified-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-card);
}

.verified-indicator svg {
    width: 10px;
    height: 10px;
    fill: var(--bg-dark);
}

.conversation-info { flex: 1; min-width: 0; }

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.conversation-name {
    font-weight: 600;
}

.conversation-time {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.conversation-preview {
    color: var(--text-gray);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 5px;
}

.conversation-preview.shida-team {
    color: var(--primary-gold);
}

.shida-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.unread-badge {
    background: var(--primary-pink);
    color: white;
    font-size: 0.7rem;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.conversation-arrow {
    color: var(--text-gray);
}

.conversation-arrow svg {
    width: 18px;
    height: 18px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.empty-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--text-gray);
}

.empty-state h3 {
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-pink);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.empty-cta svg {
    width: 18px;
    height: 18px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.settings-btn, .edit-btn {
    background: var(--bg-card);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.settings-btn:hover, .edit-btn:hover {
    background: var(--bg-secondary);
    color: var(--primary-pink);
}

.settings-btn svg, .edit-btn svg {
    width: 20px;
    height: 20px;
}

.profile-avatar-container {
    position: relative;
    width: 150px;
    margin: 20px auto;
}

.profile-avatar-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-gold);
    object-fit: cover;
    animation: float 3s infinite ease-in-out;
}

.verified-badge-large {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-dark);
}

.verified-badge-large svg {
    width: 18px;
    height: 18px;
    fill: var(--bg-dark);
}

.profile-user-name {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.verified-inline svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
}

.profile-bio {
    text-align: center;
    color: var(--text-gray);
    margin: 10px 0 20px;
    font-size: 0.9rem;
}

.dossier-section {
    margin: 30px 0;
}

.dossier-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.dossier-title svg {
    width: 18px;
    height: 18px;
}

.dossier-items {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.dossier-item {
    flex: 1;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.dossier-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.dossier-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-pink);
}

.dossier-value {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.dossier-label {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.objectives-section {
    margin: 25px 0;
}

.section-title {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.interest-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.interest-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--bg-secondary);
    transition: all 0.3s ease;
}

.interest-tag svg {
    width: 16px;
    height: 16px;
}

.interest-tag.active {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
}

.ghost-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.ghost-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ghost-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 20, 147, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghost-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-pink);
}

.ghost-text h4 { font-size: 0.95rem; }
.ghost-text p { font-size: 0.75rem; color: var(--text-gray); }

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-secondary);
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .toggle-slider { background: var(--primary-pink); }
input:checked + .toggle-slider:before { transform: translateX(24px); }

.verification-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--bg-secondary);
    padding: 15px;
    border-radius: 15px;
    color: var(--text-white);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.verification-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--success-green);
}

.verification-btn.verified {
    border-color: var(--success-green);
    color: var(--success-green);
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--text-gray);
    padding: 15px;
    border-radius: 15px;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.logout-btn svg {
    width: 18px;
    height: 18px;
}

.logout-btn:hover {
    border-color: #ff4444;
    color: #ff4444;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: var(--bg-card);
    border-radius: 25px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--bg-secondary);
}

.modal-header h3 { font-size: 1.2rem; }

.modal-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
}

.modal-close svg { width: 24px; height: 24px; }

.modal-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(255, 20, 147, 0.4);
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 430px;
    margin: 0 auto;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--bg-secondary);
}

.back-btn {
    background: none;
    border: none;
    color: var(--primary-pink);
    cursor: pointer;
    padding: 5px;
}

.back-btn svg { width: 24px; height: 24px; }

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-user-info { flex: 1; }
.chat-user-name { font-weight: 600; font-size: 0.95rem; }

.chat-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--success-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
}

.chat-options {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
}

.chat-options svg { width: 24px; height: 24px; }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    animation: message-in 0.3s ease;
}

@keyframes message-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.sent { align-self: flex-end; }
.message.received { align-self: flex-start; }

.message-bubble {
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.message.received .message-bubble {
    background: var(--bg-card);
    border-bottom-left-radius: 5px;
}

.message.sent .message-bubble {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 5px;
    text-align: right;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--bg-card);
}

.attach-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
}

.attach-btn svg { width: 24px; height: 24px; }

.chat-input {
    flex: 1;
    background: var(--bg-secondary);
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    font-size: 0.95rem;
}

.chat-input:focus { outline: 2px solid var(--primary-pink); }

.send-btn {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.send-btn:hover { transform: scale(1.1); }

.options-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
}

.options-overlay.active { display: flex; }

.options-menu {
    background: var(--bg-card);
    border-radius: 25px 25px 0 0;
    width: 100%;
    max-width: 430px;
    padding: 20px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    background: none;
    border: none;
    padding: 15px;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.option-item:hover { background: var(--bg-secondary); }
.option-item svg { width: 22px; height: 22px; }
.option-item.danger { color: #ff4444; }
.option-item.danger svg { stroke: #ff4444; }

.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-form {
    width: 100%;
    max-width: 350px;
    margin-top: 40px;
}

.auth-form .form-group { margin-bottom: 20px; }

.auth-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.auth-button:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.4);
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-gray);
}

.auth-link a {
    color: var(--primary-pink);
    text-decoration: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 50%;
    animation: float-up 10s infinite;
    opacity: 0.3;
}

@keyframes float-up {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.swipe-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.swipe-indicator.left {
    left: 20px;
    background: rgba(255, 68, 68, 0.9);
}

.swipe-indicator.right {
    right: 20px;
    background: rgba(0, 255, 136, 0.9);
}

.swipe-indicator svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-secondary);
    border-top-color: var(--primary-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    animation: confetti-fall 3s ease-out forwards;
    z-index: 1001;
}

@keyframes confetti-fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.negotiations-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px 20px;
    margin: 20px 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.negotiations-link:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-pink);
    transform: translateX(5px);
}

.negotiations-link-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.negotiations-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-pink), #d4007d);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.negotiations-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.negotiations-text {
    display: flex;
    flex-direction: column;
}

.negotiations-title {
    font-weight: 600;
    font-size: 1rem;
}

.negotiations-subtitle {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.negotiations-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
}

.onboarding-steps {
    width: 100%;
    max-width: 380px;
    margin-top: 30px;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--bg-secondary);
}

.onboarding-step {
    display: none;
    animation: fade-in 0.4s ease;
}

.onboarding-step.active {
    display: block;
}

.step-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-pink);
}

.step-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.gender-select {
    display: flex;
    gap: 15px;
}

.gender-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: 16px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.gender-btn svg {
    width: 32px;
    height: 32px;
}

.gender-btn:hover {
    border-color: var(--primary-pink);
}

.gender-btn.active {
    background: rgba(255, 20, 147, 0.15);
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

.date-picker-group {
    display: flex;
    gap: 10px;
}

.date-select {
    flex: 1;
    text-align: center;
}

.date-error {
    color: #ff4444;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 10px;
}

.step-buttons {
    display: flex;
    gap: 15px;
}

.step-buttons .auth-button {
    flex: 1;
}

.auth-button.secondary {
    background: var(--bg-secondary);
    color: var(--text-white);
}

.auth-button.secondary:hover {
    background: var(--bg-card);
}

.discover-link {
    margin-top: 20px;
    text-align: center;
}

.discover-link a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.discover-link a:hover {
    color: var(--primary-gold);
}

.guest-banner {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(255, 215, 0, 0.1));
    border: 1px solid var(--primary-pink);
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.guest-banner p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.guest-banner a {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.guest-banner a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
}

/* Notification Icon Styles */
.notif-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon {
    width: 22px;
    height: 22px;
    stroke: white;
}

.notif-pink { background: var(--primary-pink); }
.notif-gold { background: var(--primary-gold); }
.notif-gold .notif-icon { stroke: var(--bg-dark); }
.notif-green { background: var(--success-green); }
.notif-green .notif-icon { stroke: var(--bg-dark); }
.notif-blue { background: #3b82f6; }
.notif-purple { background: #8b5cf6; }
.notif-default { background: var(--bg-secondary); }

/* Settings Page Styles */
.settings-section {
    padding: 0;
}

.settings-list {
    display: flex;
    flex-direction: column;
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--text-gray);
    text-decoration: none;
    border-bottom: 1px solid var(--bg-secondary);
    transition: color 0.3s ease;
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-item:hover {
    color: var(--text-white);
}

.settings-arrow {
    width: 18px;
    height: 18px;
}

.settings-subscription {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.subscription-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vip-badge {
    background: var(--primary-gold);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.expire-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.no-subscription {
    color: var(--text-gray);
}

/* Market Page Styles */
.market-section {
    margin: 25px 0;
}

.section-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
    margin-right: 8px;
}

.token-gold {
    fill: var(--primary-gold);
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--bg-secondary);
}

.plan-card.featured {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffaa00 100%);
    border: none;
}

.plan-card.featured .plan-name,
.plan-card.featured .plan-price,
.plan-card.featured li {
    color: var(--bg-dark);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.plan-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
}

.popular-badge {
    background: var(--bg-dark);
    color: var(--primary-gold);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    margin-bottom: 15px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.plan-features svg {
    width: 16px;
    height: 16px;
    stroke: var(--success-green);
    flex-shrink: 0;
}

.plan-card.featured .plan-features svg {
    stroke: var(--bg-dark);
}

.featured-btn {
    background: var(--bg-dark) !important;
    color: var(--primary-gold) !important;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.token-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--bg-secondary);
}

.token-card.featured {
    border-color: var(--primary-pink);
}

.token-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.token-icon-large {
    width: 30px;
    height: 30px;
    fill: var(--primary-gold);
}

.token-amount span {
    font-size: 1.8rem;
    font-weight: 700;
}

.token-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.token-price {
    color: var(--primary-pink);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.buy-btn {
    width: 100%;
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    transform: scale(1.02);
}

.modal-actions {
    display: flex;
    gap: 15px;
    padding: 20px;
}

.btn-secondary {
    flex: 1;
    background: var(--bg-secondary);
    color: var(--text-white);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    flex: 1;
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.success-modal {
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--bg-dark);
}

.success-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-modal p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Guest Access Banner */
.guest-banner {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    border-radius: 15px;
    padding: 15px 20px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guest-banner-text {
    font-size: 0.9rem;
}

.guest-banner-text strong {
    display: block;
    margin-bottom: 3px;
}

.guest-banner-btn {
    background: white;
    color: var(--primary-pink);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.empty-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.empty-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    max-width: 320px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.login-modal.active .login-modal-content {
    transform: scale(1);
}

.login-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.login-modal-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.login-modal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.login-modal-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.login-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-modal-btn {
    padding: 14px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.login-modal-btn.primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #d4007d 100%);
    color: white;
}

.login-modal-btn.secondary {
    background: var(--bg-secondary);
    color: var(--text-white);
}

/* Back Button */
.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--primary-pink);
}

.back-btn svg {
    width: 20px;
    height: 20px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-pink);
}

.breadcrumb-separator {
    width: 14px;
    height: 14px;
    stroke: var(--text-gray);
}

.breadcrumb-current {
    color: var(--text-white);
    font-weight: 500;
}

/* Swipe Color Overlay */
.profile-card .swipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card .swipe-overlay.like {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4) 0%, rgba(0, 200, 100, 0.6) 100%);
}

.profile-card .swipe-overlay.dislike {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.4) 0%, rgba(200, 50, 50, 0.6) 100%);
}

.profile-card .swipe-overlay svg {
    width: 80px;
    height: 80px;
    stroke: white;
    stroke-width: 3;
    fill: none;
}

.profile-card .swipe-overlay.like svg {
    fill: rgba(0, 255, 136, 0.8);
    stroke: white;
}
