:root {
    /* Mate Luxe (Dark Mode) */
    --bg-main: #060608;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --header-bg: rgba(6, 6, 8, 0.85);
    --item-bg: rgba(255, 255, 255, 0.02);
    --mesh-opacity: 0.18;
    --hero-overlay: linear-gradient(to right, rgba(6, 6, 8, 0.9), rgba(6, 6, 8, 0.3));
    --bubble-other: rgba(255, 255, 255, 0.04);
    --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.4);
    
    --acc-violet: #7F00FF;
    --acc-pink: #FF0080;
    --acc-mint: #00FFD1;
    --acc-gold: #FFC107;
    --gradient-primary: linear-gradient(135deg, var(--acc-violet), var(--acc-pink));
    
    --font-main: 'Outfit', sans-serif;
    --nav-height: 80px;
    --transition-slow: 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.light-mode {
    /* LUMINANCE LUXE (Light Mode) */
    --bg-main: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(15, 23, 42, 0.06);
    --header-bg: rgba(255, 255, 255, 0.9);
    --item-bg: rgba(248, 250, 252, 0.95);
    --mesh-opacity: 0.06;
    --hero-overlay: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2));
    --bubble-other: rgba(15, 23, 42, 0.05);
    --shadow-card: 0 15px 35px rgba(15, 23, 42, 0.05);
    --acc-gold: #B45309;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.light-mode body {
    background: radial-gradient(circle at top right, #FFFFFF, #F8FAFC 50%, #F1F5F9);
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAwIDIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42NSIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNuKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-cta {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s, opacity 0.3s;
    border: none;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 20px rgba(127, 0, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.light-mode .btn-primary {
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
    animation: zoomOut 20s linear infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Discover Section */
.discover {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.profile-card {
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s var(--transition-slow);
    box-shadow: var(--shadow-card);
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.profile-card.glass::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.8s;
    pointer-events: none;
}

.profile-card.glass:hover::after {
    top: 50%;
    left: 50%;
}

.profile-img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.profile-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.mate-score {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--acc-pink);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Algorithm Section */
.algorithm {
    padding: 120px 0;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.algo-image {
    flex: 1;
    height: 450px;
    background: var(--glass-bg);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-gradient-box {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--acc-violet) 0%, transparent 70%);
    opacity: 0.2;
    animation: rotate 10s linear infinite;
}

.algo-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.algo-text {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-list li span {
    color: var(--acc-pink);
    font-weight: 700;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0 120px 0;
}

.cta-banner .container {
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.cta-banner .container.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-banner p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 100px 0 40px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer-links a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--acc-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: #555;
    font-size: 0.9rem;
}

/* Pricing & Content */
.pricing { padding-bottom: 80px; }
.pricing .profile-card { text-align: center; }
.price { font-size: 2.5rem; font-weight: 700; margin: 20px 0; }
.price span { font-size: 1rem; color: var(--text-muted); }
.badget { background: var(--acc-violet); font-size: 0.7rem; padding: 5px 12px; border-radius: 20px; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); }
.btn-full { width: 100%; margin-top: 20px; }

.insights { padding: 120px 0; background: rgba(255,255,255,0.02); }
.blog-post h4 { margin-top: 15px; font-size: 1.1rem; line-height: 1.4; }
.blog-post .post-img { transition: transform 0.5s; background: linear-gradient(45deg, #111, #222) !important; }
.blog-post:hover .post-img { transform: scale(1.03); }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 40px;
    border-radius: 30px;
    text-align: center;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.heart-btn.active {
    color: var(--acc-pink) !important;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(246, 76, 114, 0.5);
}

/* Modal Styles */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
}
.modal-content {
    max-width: 400px; padding: 40px; border-radius: 30px; text-align: center;
}
.form-group input, .form-group select {
    width: 100%; margin-bottom: 15px; padding: 12px; border-radius: 10px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border);
    color: var(--text-main); font-family: var(--font-main);
}

/* Chat Styles */
.chat-container { display: flex; gap: 30px; height: 500px; margin-top: 40px; }
.chat-sidebar { width: 250px; border-right: 1px solid var(--glass-border); padding-right: 20px; }
.chat-main { flex: 1; display: flex; flex-direction: column; }
.chat-window { flex: 1; overflow-y: auto; padding: 20px; background: rgba(0,0,0,0.2); border-radius: 20px; margin-bottom: 20px; }
.chat-input-area { display: flex; gap: 10px; }
.chat-input-area input { flex: 1; padding: 12px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); color: var(--text-main); }

.channel-btn { width: 100%; text-align: left; background: none; border: none; color: var(--text-gray); padding: 10px; cursor: pointer; transition: 0.3s; }
.channel-btn.active { color: var(--acc-pink); font-weight: 700; }

.chat-msg { margin-bottom: 15px; padding: 10px 15px; border-radius: 15px; background: var(--glass-bg); max-width: 80% }
.chat-msg span { display: block; font-size: 0.7rem; font-weight: 700; color: var(--acc-violet); margin-bottom: 3px; }

/* Animations */
@keyframes zoomOut {
    from { transform: scale(1.15); }
    to { transform: scale(1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in { animation: fadeIn 1s forwards; }
.fade-in-delay { animation: fadeIn 1s 0.3s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeIn 1s 0.6s forwards; opacity: 0; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ping {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta button:first-child { display: none; }
    .menu-toggle { display: flex; font-size: 1.5rem; cursor: pointer; color: var(--text-main); align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: var(--item-bg); }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .profile-grid { grid-template-columns: 1fr; }
    .flex-row { flex-direction: column; text-align: center; }
    .algo-text { order: 1; }
    .algo-image { order: 2; width: 100%; height: 300px; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
    .section-title { font-size: 2rem; }
    .discover { padding: 60px 0; }
    .hero { min-height: 85vh; }
}

.menu-toggle { display: none; }

@media (max-width: 500px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2rem; }
    .cta-banner .container { padding: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-cta .btn { width: 100%; text-align: center; }
}

@media (max-width: 380px) {
    .hero-title { font-size: 1.7rem; }
    .section-title { font-size: 1.6rem; }
}

/* MATE TOAST SYSTEM */
.toast {
    position: fixed; top: 25px; left: 50%; transform: translateX(-50%);
    background: var(--bg-main); backdrop-filter: blur(20px);
    border: 1px solid var(--acc-mint); border-radius: 24px;
    padding: 16px 28px; display: flex; align-items: center; gap: 18px;
    animation: slideInTop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5000001; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    max-width: 90%; min-width: 320px; cursor: pointer; transition: 0.3s;
    pointer-events: all;
}
.toast:hover { transform: translate(-50%, -3px); box-shadow: 0 25px 60px rgba(0,255,209,0.15); }
@keyframes slideInTop { from { transform: translate(-50%, -150%); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
@keyframes slideOutTop { from { transform: translate(-50%, 0); opacity: 1; } to { transform: translate(-50%, -150%); opacity: 0; } }

/* MOBILE OVERLAY MENU */
.mobile-overlay {
    position: fixed; inset: 0; background: var(--bg-main); z-index: 2000;
    display: none; flex-direction: column; align-items: center; justify-content: center;
    padding: 40px; opacity: 0; pointer-events: none; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.active { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav-links { list-style: none; text-align: center; width: 100%; }
.mobile-nav-links li { margin-bottom: 30px; transform: translateY(20px); opacity: 0; transition: 0.4s; }
.mobile-overlay.active li { transform: translateY(0); opacity: 1; }
.mobile-nav-links a { font-size: 2rem; font-weight: 800; color: var(--text-main); text-decoration: none; text-transform: uppercase; letter-spacing: 4px; }
.mobile-nav-links a span { color: var(--acc-pink); }
.close-mobile { position: absolute; top: 30px; right: 30px; font-size: 2rem; cursor: pointer; color: var(--text-muted); }

/* CUSTOM MODAL SYSTEM */
.v-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(15px); z-index: 99999999 !important; display: none; align-items: center; justify-content: center; }
.v-modal-overlay.open { display: flex; }
.v-modal-card { 
    background: var(--bg-main); border: 1px solid var(--glass-border); 
    border-radius: 32px; width: 92%; max-width: 420px; padding: 45px; 
    text-align: center; box-shadow: var(--shadow-card); 
    animation: popupAnim 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.v-modal-title { font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-main); margin-bottom: 12px; }
.v-modal-msg { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 35px; }
.v-modal-btns { display: flex; gap: 15px; }
.v-modal-btn { 
    flex: 1; padding: 16px; border-radius: 14px; font-weight: 800; 
    cursor: pointer; transition: 0.3s; font-family: 'Outfit', sans-serif; 
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; 
    border: none;
}
.v-modal-btn.primary { background: var(--gradient-primary); color: white; }
.v-modal-btn.secondary { background: var(--item-bg); color: var(--text-muted); border: 1px solid var(--glass-border); }
.v-modal-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
/* Mate ADDONS: AURAS & EFFECTS */
.aura-glow { position: relative; }
.aura-glow::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    z-index: -1; animation: auraPulse 2s infinite alternate;
    opacity: 0.6; pointer-events: none;
}
.aura-pink::after { box-shadow: 0 0 15px var(--acc-pink), 0 0 30px var(--acc-pink); background: var(--acc-pink); }
.aura-mint::after { box-shadow: 0 0 15px var(--acc-mint), 0 0 30px var(--acc-mint); background: var(--acc-mint); }
.aura-gold::after { box-shadow: 0 0 15px var(--acc-gold), 0 0 30px var(--acc-gold); background: var(--acc-gold); }
.aura-violet::after { box-shadow: 0 0 15px var(--acc-violet), 0 0 30px var(--acc-violet); background: var(--acc-violet); }

@keyframes auraPulse {
    0% { transform: scale(1); opacity: 0.4; filter: blur(4px); }
    100% { transform: scale(1.15); opacity: 0.7; filter: blur(8px); }
}

/* INTERACTIVE REACTIONS */
.reaction-particle {
    position: fixed; pointer-events: none; z-index: 50000;
    font-size: 2.5rem; animation: floatUpAndFade 2.5s ease-out forwards;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}
@keyframes floatUpAndFade {
    0% { transform: translateY(0) scale(0.5) rotate(0deg); opacity: 0; }
    20% { opacity: 1; transform: translateY(-20px) scale(1.2); }
    100% { transform: translateY(-300px) scale(1) rotate(15deg); opacity: 0; }
}

/* STICKER SYSTEM */
.sticker-img { width: 120px; height: 120px; object-fit: contain; margin: 10px 0; border-radius: 12px; transition: 0.3s; }
.sticker-img:hover { transform: scale(1.1); filter: drop-shadow(0 0 15px var(--acc-pink)); }

.sticker-picker {
    position: absolute; bottom: 85px; left: 40px; width: 320px; height: 380px;
    background: var(--bg-main); backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border); border-radius: 24px;
    display: none; flex-direction: column; z-index: 4000; overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6); animation: stickerPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes stickerPop { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

.sticker-picker-header { padding: 20px; border-bottom: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; }
.sticker-picker-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding: 15px; overflow-y: auto; }
.sticker-opt { width: 100%; height: 80px; object-fit: contain; cursor: pointer; border-radius: 12px; transition: 0.2s; }
.sticker-opt:hover { background: rgba(255,255,255,0.05); transform: translateY(-4px); }

/* MOOD PLAYER */
.mood-player {
    margin-top: auto; padding: 20px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border); position: relative; overflow: hidden;
}
.mood-player::before {
    content: ''; position: absolute; top:0; left:0; width: 100%; height: 3px;
    background: var(--acc-pink); opacity: 0.5;
}
.mood-info { margin-bottom: 15px; }
.mood-title { font-size: 0.65rem; color: var(--acc-mint); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.mood-track { font-size: 0.85rem; font-weight: 700; color: var(--text-main); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mood-controls { display: flex; align-items: center; justify-content: center; gap: 20px; }
.mood-btn { background: none; border: none; color: var(--text-main); cursor: pointer; opacity: 0.6; transition: 0.3s; }
.mood-btn:hover { opacity: 1; transform: scale(1.1); color: var(--acc-pink); }
.mood-visualizer { display: flex; align-items: flex-end; gap: 3px; height: 12px; margin-top: 15px; justify-content: center; }
.vis-bar { width: 3px; height: 100%; background: var(--acc-pink); border-radius: 2px; animation: visAnim 1.2s infinite ease-in-out; }
@keyframes visAnim { 0%, 100% { height: 4px; } 50% { height: 12px; } }
.vis-bar:nth-child(2) { animation-delay: 0.2s; }
.vis-bar:nth-child(3) { animation-delay: 0.4s; }
.vis-bar:nth-child(4) { animation-delay: 1.2s; }
.vis-bar:nth-child(5) { animation-delay: 0.8s; }

/* MATE UI MODALS */
.v-modal-overlay { position: fixed; inset: 0; background: rgba(5,5,10,0.85); backdrop-filter: blur(20px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.v-modal-card { background: #141419; border: 1px solid var(--glass-border); border-radius: 30px; width: 100%; max-width: 400px; padding: 40px; text-align: center; box-shadow: 0 30px 60px rgba(0,0,0,0.5); animation: vPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes vPop { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.v-modal-title { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--acc-pink); margin-bottom: 20px; }
.v-modal-msg { font-size: 1rem; line-height: 1.6; color: var(--text-main); margin-bottom: 30px; }
.v-modal-btns { display: flex; gap: 15px; }
.v-modal-btn { flex: 1; padding: 15px; border-radius: 12px; border: none; font-weight: 800; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; font-size: 0.8rem; }
.v-modal-btn.primary { background: var(--acc-pink); color: white; }
.v-modal-btn.secondary { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--glass-border); }
.v-modal-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* PRESTIGE BADGES */
.p-badge { font-size: 0.8rem; margin-right: 4px; display: inline-flex; align-items: center; justify-content: center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.2)); }
.b-crown { animation: crownGlow 2s infinite alternate; }
.b-diamond { animation: diamondPulse 1.5s infinite ease-in-out; }
@keyframes crownGlow { from { filter: drop-shadow(0 0 2px #FFD700); } to { filter: drop-shadow(0 0 8px #FFD700); transform: scale(1.1); } }
@keyframes diamondPulse { 0% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2) rotate(10deg); } 100% { opacity: 0.8; transform: scale(1); } }

/* LUXURY GIFT BROADCAST */
.luxury-broadcast { position: fixed; inset: 0; z-index: 50000; background: rgba(5,5,10,0.85); backdrop-filter: blur(40px); display: flex; align-items: center; justify-content: center; animation: lbFadeIn 0.8s cubic-bezier(0.2, 0, 0, 1) forwards; overflow: hidden; pointer-events: none; }
.lb-inner { text-align: center; position: relative; z-index: 2; }
.lb-icon { font-size: 10rem; margin-bottom: 20px; animation: lbIconPop 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.lb-title { font-size: 0.8rem; font-weight: 900; color: var(--acc-gold); letter-spacing: 12px; margin-bottom: 20px; text-transform: uppercase; animation: lbSlideUp 0.6s 0.3s both; font-family: 'Outfit', sans-serif; }
.lb-msg { font-size: 1.5rem; color: white; font-weight: 800; animation: lbSlideUp 0.6s 0.5s both; font-family: 'Outfit', sans-serif; }
.luxury-broadcast.fade-out { opacity: 0; transition: 1s ease-in-out; }

.lb-sparkles { position: absolute; inset: 0; z-index: 1; }
.lb-dot { position: absolute; width: 4px; height: 4px; background: white; border-radius: 50%; opacity: 0; animation: lbSparkle 3s infinite linear; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbIconPop { 0% { transform: scale(0) rotate(-20deg); opacity: 0; } 60% { transform: scale(1.2) rotate(5deg); opacity: 1; } 100% { transform: scale(1) rotate(0); } }
@keyframes lbSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes lbSparkle { 0% { transform: translateY(0) scale(0); opacity: 0; } 50% { opacity: 0.8; } 100% { transform: translateY(-500px) scale(1.5); opacity: 0; } }


@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin: 0 auto 25px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-cta {
        gap: 8px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}
@media (max-width: 768px) {
    .profile-img {
        height: 250px;
    }

    .profile-card {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .btn-large {
        padding: 14px;
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .sticky-mini-chat {
        left: 10px;
        right: 10px;
        bottom: 15px;
        padding: 10px 15px;
        gap: 10px;
    }

    .mini-chat-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}


.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}
