/* ==========================================================================
   ChatVerse India - Clean Webpage Production Stylesheet
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark-base: #040409;
    --bg-dark-surface: rgba(12, 8, 28, 0.6);
    --bg-dark-nested: rgba(8, 6, 20, 0.9);
    --bg-phone-base: #06060c;
    
    --color-pink: #ff007f;
    --color-violet: #9d4edf;
    --color-purple: #7b2cbf;
    --color-blue: #00f5ff;
    --color-green: #39ff14;
    
    --gradient-accent: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    --gradient-violet: linear-gradient(135deg, var(--color-violet) 0%, #3a0ca3 100%);
    --gradient-dark: linear-gradient(180deg, #070714 0%, #0c081e 100%);
    --gradient-pink: linear-gradient(135deg, #ff007f 0%, #ff5e62 100%);
    --gradient-blue: linear-gradient(135deg, #00f5ff 0%, #0077b6 100%);
    --gradient-green: linear-gradient(135deg, #39ff14 0%, #00b4d8 100%);
    
    /* Neon Glow Shadows */
    --shadow-glow-pink: 0 0 20px rgba(255, 0, 127, 0.25);
    --shadow-glow-violet: 0 0 20px rgba(157, 78, 223, 0.25);
    --shadow-glow-blue: 0 0 20px rgba(0, 245, 255, 0.25);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
}

/* ==========================================================================
   Reset & Baseline Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark-base);
    color: #f1f1f6;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: var(--font-body);
    border: none;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-pink);
}

/* Utility Classes */
.accent-text {
    color: var(--color-pink);
}
.glow-txt-pink {
    color: var(--color-pink);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}
.glow-txt-violet {
    color: var(--color-violet);
    text-shadow: 0 0 10px rgba(157, 78, 223, 0.5);
}
.glow-txt-blue {
    color: var(--color-blue);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glass-card {
    background: var(--bg-dark-surface);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-glass);
    border-radius: 20px;
}
.text-center {
    text-align: center;
}
.full-width {
    width: 100% !important;
}
.hide {
    display: none !important;
}

/* Pulse Dot indicator */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-green);
    box-shadow: 0 0 8px var(--color-green);
    animation: dotPulse 1.5s infinite alternate;
}
@keyframes dotPulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--color-green); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    position: sticky;
    top: 0;
    background: rgba(4, 4, 9, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.landing-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(255, 0, 127, 0.3);
}

.landing-nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.landing-nav-links a {
    color: #a0a0b0;
    font-size: 14px;
    font-weight: 500;
}

.landing-nav-links a:hover {
    color: var(--color-pink);
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

.landing-nav-actions {
    display: flex;
    gap: 15px;
}

.nav-btn-secondary {
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    font-size: 13px;
    font-weight: 600;
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-btn-primary {
    padding: 10px 22px;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.25);
}

.nav-btn-primary:hover {
    box-shadow: 0 4px 25px rgba(255, 0, 127, 0.45);
    transform: translateY(-2px);
}

/* Main Scroll Wrapper */
.landing-page-wrapper {
    width: 100%;
}

/* ==========================================================================
   1. Hero Section & Integrated Simulator
   ========================================================================== */
.section-hero {
    position: relative;
    padding: 80px 6% 120px 6%;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 78, 223, 0.12) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #d1d1d6;
}

.hero-title {
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 16px;
    color: #a0a0b0;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.btn-primary-neon {
    padding: 15px 32px;
    border-radius: 15px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.35);
}

.btn-primary-neon:hover {
    box-shadow: 0 6px 30px rgba(255, 0, 127, 0.6);
    transform: translateY(-2px);
}

.btn-secondary-glass {
    padding: 15px 32px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.live-users-widget {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-group {
    display: flex;
}

.widget-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #040409;
    margin-right: -12px;
    object-fit: cover;
}

.widget-avatar-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1b1b36;
    border: 2px solid #040409;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-pink);
}

.widget-info {
    display: flex;
    flex-direction: column;
}

.widget-stars {
    color: #ffb703;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.widget-text {
    font-size: 11px;
    color: #a0a0b0;
    margin-top: 2px;
}

/* Integrated Simulator Column Layout */
.hero-simulator-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.glowing-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.12) 0%, transparent 70%);
    animation: orbFloat 8s infinite alternate;
}

@keyframes orbFloat {
    0% { transform: translate(-25px, -25px); }
    100% { transform: translate(25px, 25px); }
}

/* Floating profile cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    width: 210px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: cardFloat 6s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-card:hover {
    border-color: var(--color-pink);
    transform: translateY(-5px) scale(1.03) !important;
}

.fc-1 {
    top: 15%;
    left: -40px;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 18%;
    right: -40px;
    animation-delay: 3s;
}

@keyframes cardFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.fc-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fc-info h4 {
    font-size: 13px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    color: var(--color-blue);
    font-size: 12px;
}

.fc-info p {
    font-size: 10px;
    color: #a0a0b0;
    margin-bottom: 4px;
}

.fc-tags {
    display: flex;
    gap: 4px;
}

.fc-tags span {
    font-size: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Smartphone Simulator Case bezel */
.phone-simulator-shell {
    position: relative;
    z-index: 5;
    transform: scale(0.96);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.phone-bezel {
    width: 340px;
    height: 690px;
    background: #000;
    border-radius: 40px;
    border: 7px solid #1a1826;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05),
                0 0 25px rgba(157, 78, 223, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Dynamic Island */
.phone-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #000;
    border-radius: 11px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    transition: var(--transition-smooth);
}

.camera-lens {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #111;
}

.island-pill {
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.voice-pill-icon {
    font-size: 9px;
    color: var(--color-green);
    animation: greenPulse 1s infinite alternate;
}

@keyframes greenPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Simulator screen wrapper */
.phone-screen {
    flex: 1;
    width: 100%;
    background-color: var(--bg-phone-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.phone-status-bar {
    height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px 0 18px;
    font-size: 10px;
    color: #fff;
    font-weight: 600;
    z-index: 90;
    background: transparent;
    user-select: none;
}

.status-icons {
    display: flex;
    gap: 6px;
}

/* Base App Screen layout */
.app-screen {
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 12px;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: 10;
}

.app-screen.screen-active {
    display: flex;
    opacity: 1;
    transform: scale(1);
    z-index: 20;
}

/* Phone bottom indicator */
.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 100;
}

/* Back Nav header */
.back-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.back-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-nav span {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* ==========================================================================
   2. Features Section
   ========================================================================== */
.section-features {
    padding: 100px 6%;
}

.section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-pink);
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: clamp(30px, 3.5vw, 42px);
    margin-bottom: 15px;
}

.section-header p {
    color: #a0a0b0;
    font-size: 15px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    padding: 35px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 127, 0.25);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.1);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.bg-pink-glow { background: var(--gradient-pink); box-shadow: var(--shadow-glow-pink); }
.bg-violet-glow { background: var(--gradient-violet); box-shadow: var(--shadow-glow-violet); }
.bg-blue-glow { background: var(--gradient-blue); box-shadow: var(--shadow-glow-blue); }
.bg-green-glow { background: var(--gradient-green); box-shadow: 0 0 20px rgba(57, 255, 20, 0.25); }
.bg-red-glow { background: linear-gradient(135deg, #e63946, #d62828); box-shadow: 0 0 20px rgba(230, 57, 70, 0.25); }
.bg-orange-glow { background: linear-gradient(135deg, #f77f00, #fcbf49); box-shadow: 0 0 20px rgba(247, 127, 0, 0.25); }

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #a0a0b0;
    font-size: 13px;
    line-height: 1.6;
}

/* ==========================================================================
   3. Statistics Section
   ========================================================================== */
.section-stats {
    padding: 40px 6%;
    position: relative;
}

.stats-glow-left {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.08) 0%, transparent 70%);
    bottom: -150px;
    right: 0;
    pointer-events: none;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 40px;
    text-align: center;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #a0a0b0;
    font-weight: 500;
}

/* ==========================================================================
   4. How It Works Section
   ========================================================================== */
.section-how {
    padding: 100px 6%;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.how-step {
    position: relative;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.step-num {
    font-size: 44px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 15px;
    right: 15px;
}

.how-step h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #fff;
}

.how-step p {
    color: #a0a0b0;
    font-size: 13px;
    line-height: 1.6;
}

/* ==========================================================================
   5. Safety Section
   ========================================================================== */
.section-safety {
    padding: 100px 6%;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.safety-content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    margin-bottom: 15px;
}

.safety-content p {
    color: #a0a0b0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.safety-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.safety-list li {
    display: flex;
    gap: 18px;
}

.safety-list-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 0, 127, 0.1);
    color: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.safety-list-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.safety-list-text p {
    font-size: 13px;
    color: #a0a0b0;
    margin: 0;
    line-height: 1.5;
}

.safety-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety-shield-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-pulse {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: shieldGlow 3s infinite alternate;
}

@keyframes shieldGlow {
    0% { transform: scale(0.9); }
    100% { transform: scale(1.1); }
}

.shield-card {
    position: relative;
    padding: 35px;
    text-align: center;
    width: 100%;
}

.shield-main-icon {
    font-size: 54px;
    color: var(--color-pink);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
}

.shield-card h3 {
    font-size: 19px;
    margin-bottom: 6px;
}

.security-indicator {
    font-size: 11px;
    color: #a0a0b0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 12px;
    border-radius: 20px;
}

.card-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 20px 0;
}

.security-stats {
    display: flex;
    justify-content: space-around;
}

.sec-stat span {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
}

.sec-stat p {
    font-size: 10px;
    color: #a0a0b0;
    margin: 4px 0 0 0;
}

/* ==========================================================================
   6. Testimonials Section
   ========================================================================== */
.section-testimonials {
    padding: 100px 6%;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 40px;
}

.t-rating {
    color: #ffb703;
    font-size: 14px;
    margin-bottom: 18px;
}

.t-review {
    font-size: 14px;
    color: #d1d1d6;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-user-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.t-user-info h4 {
    font-size: 15px;
}

.t-user-info p {
    font-size: 12px;
    color: #a0a0b0;
}

/* ==========================================================================
   7. Download Section
   ========================================================================== */
.section-download {
    padding: 100px 6%;
}

.download-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    padding: 60px;
    overflow: hidden;
}

.download-info h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    margin-bottom: 15px;
}

.download-info p {
    color: #a0a0b0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 440px;
}

.store-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.store-btn {
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.store-icon {
    font-size: 28px;
    color: var(--color-pink);
}

.store-subtext {
    font-size: 9px;
    text-transform: uppercase;
    color: #a0a0b0;
    display: block;
}

.store-title {
    font-size: 15px;
    font-weight: 700;
}

.qr-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qr-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.qr-icon {
    font-size: 38px;
    color: #fff;
}

.qr-container p {
    font-size: 12px;
    line-height: 1.5;
    color: #a0a0b0;
    margin: 0;
}

.download-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-mockup-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   8. Footer Section
   ========================================================================== */
.landing-footer {
    padding: 80px 6% 30px 6%;
    background: rgba(3, 3, 7, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-col.brand p {
    font-size: 13px;
    color: #a0a0b0;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 270px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #a0a0b0;
}

.footer-socials a:hover {
    background: var(--color-pink);
    color: #fff;
    transform: scale(1.15);
}

.footer-col h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul a {
    font-size: 13px;
    color: #a0a0b0;
}

.footer-col ul a:hover {
    color: var(--color-pink);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #a0a0b0;
}

/* ==========================================================================
   APP SCREENS INTERNAL STYLING
   ========================================================================== */

/* 1. SPLASH SCREEN */
#screen-splash {
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    background: radial-gradient(circle at center, #1b0a3a 0%, #080812 100%);
}

.splash-logo-container {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.splash-logo {
    width: 76px;
    height: 76px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.4);
    margin-bottom: 20px;
    animation: logoGlowPulse 2s infinite alternate;
}

@keyframes logoGlowPulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 127, 0.4); }
    100% { transform: scale(1.05); box-shadow: 0 0 35px rgba(255, 0, 127, 0.7); }
}

.splash-logo-container h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.splash-logo-container p {
    font-size: 11px;
    color: #a0a0b0;
}

.splash-loader-bar {
    width: 130px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 50px;
    overflow: hidden;
}

.splash-loader-fill {
    width: 60%;
    height: 100%;
    background: var(--gradient-accent);
    animation: loaderFillAnimation 3s ease-in-out infinite;
}

@keyframes loaderFillAnimation {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(50%); }
    100% { transform: translateX(100%); }
}

.splash-btn {
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.3);
}

/* 2. LOGIN SCREEN */
#screen-login {
    padding: 0 20px 20px 20px;
}

.login-content {
    padding-top: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.login-content h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.login-content p {
    font-size: 11px;
    color: #a0a0b0;
    margin-bottom: 25px;
    line-height: 1.5;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.input-group label {
    font-size: 11px;
    color: #a0a0b0;
    font-weight: 600;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    height: 46px;
    padding: 0 15px;
}

.input-wrapper:focus-within {
    border-color: var(--color-pink);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.15);
}

.input-prefix {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    margin-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 10px;
}

.input-icon {
    font-size: 15px;
    color: #a0a0b0;
    margin-right: 10px;
}

.input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 12px;
    width: 100%;
}

.resend-timer {
    font-size: 10px;
    color: #a0a0b0;
    text-align: right;
    margin-top: 4px;
}

.resend-timer span {
    color: var(--color-pink);
    font-weight: 700;
}

.divider {
    text-align: center;
    position: relative;
    margin: 22px 0;
}

.divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 0;
    z-index: 0;
}

.divider span {
    font-size: 9px;
    color: #a0a0b0;
    background: var(--bg-phone-base);
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.social-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: auto;
}

.social-login-btn {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 12px;
}

.social-login-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.terms-txt {
    text-align: center;
    font-size: 9px !important;
    color: rgba(255, 255, 255, 0.35) !important;
    margin: 20px 0 0 0 !important;
}

/* 3. HOME FEED SCREEN */
.app-header {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.logo-icon-sm {
    width: 24px;
    height: 24px;
    background: var(--gradient-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    color: #fff;
}

.app-header-icons {
    display: flex;
    gap: 12px;
    font-size: 17px;
    color: #a0a0b0;
}

.app-header-icons i {
    cursor: pointer;
    position: relative;
}

.badge-dot {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 6px;
    height: 6px;
    background: var(--color-pink);
    border-radius: 50%;
}

.stories-row {
    padding: 12px 15px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stories-row::-webkit-scrollbar {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: #a0a0b0;
    flex-shrink: 0;
    cursor: pointer;
}

.story-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.create-room-story .story-avatar {
    border-style: dashed;
    border-color: var(--color-pink);
    color: var(--color-pink);
}

.story-item.live .story-avatar {
    border-color: var(--color-pink);
}

.live-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-pink);
    color: #fff;
    font-size: 7px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
}

.home-chats-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    padding-bottom: 70px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-title-row h4 {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: #a0a0b0;
    font-weight: 800;
}

.active-rooms-num {
    font-size: 9px;
    background: rgba(57, 255, 20, 0.1);
    color: var(--color-green);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
}

.chat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.chat-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-list-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.chat-list-item.unread {
    background: rgba(255, 0, 127, 0.03);
    border-color: rgba(255, 0, 127, 0.15);
}

.chat-item-avatar {
    position: relative;
    width: 38px;
    height: 38px;
}

.chat-item-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.online-indicator {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border: 1.5px solid var(--bg-phone-base);
    border-radius: 50%;
}

.chat-item-content {
    flex: 1;
    min-width: 0;
}

.chat-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.chat-item-header h5 {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-time {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
}

.chat-msg-preview {
    font-size: 11px;
    color: #a0a0b0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-list-item.unread .chat-msg-preview {
    color: #fff;
    font-weight: 600;
}

.unread-count {
    width: 16px;
    height: 16px;
    background: var(--color-pink);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-spaced {
    margin-top: 22px;
}

.view-all {
    font-size: 10px;
    color: var(--color-pink);
    font-weight: 700;
}

.voice-card-small {
    padding: 14px;
    cursor: pointer;
}

.voice-card-small:hover {
    border-color: rgba(255, 0, 127, 0.2);
}

.voice-card-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.voice-topic-tag {
    font-size: 9px;
    background: rgba(157, 78, 223, 0.15);
    color: var(--color-violet);
    padding: 2px 6px;
    border-radius: 5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.voice-listeners {
    font-size: 9px;
    color: #a0a0b0;
}

.voice-card-small h3 {
    font-size: 13px;
    margin-bottom: 12px;
}

.voice-hosts-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.host-avatars {
    display: flex;
}

.host-avatars img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--bg-phone-base);
    margin-right: -6px;
}

.voice-hosts-row p {
    font-size: 9px;
    color: #a0a0b0;
}

/* Phone navigation bar */
.mobile-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(10, 8, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 6px;
    z-index: 80;
}

.nav-item {
    background: transparent;
    color: #a0a0b0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 9px;
    flex: 1;
}

.nav-item i {
    font-size: 16px;
}

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

.nav-item.main-action {
    transform: translateY(-10px);
}

.nav-item.main-action i {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
    border: 3px solid var(--bg-phone-base);
}

/* 4. DISCOVERY SCREEN */
.discovery-header {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 700;
}

.filter-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.discovery-card-stack {
    flex: 1;
    position: relative;
    margin: 10px 15px 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discovery-card-placeholder {
    text-align: center;
    color: #a0a0b0;
}

.discovery-card-placeholder i {
    font-size: 28px;
    margin-bottom: 8px;
}

.discovery-card-placeholder p {
    font-size: 11px;
}

.profile-swipe-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: grab;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
}

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

.profile-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.profile-card-overlay h3 {
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.profile-card-overlay p {
    font-size: 11px;
    color: #c8c8d3;
    margin-bottom: 6px;
}

.profile-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.profile-card-tags span {
    font-size: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    padding: 2px 7px;
    border-radius: 20px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swipe-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0 70px 0;
}

.swipe-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pass-btn {
    background: rgba(255, 255, 255, 0.03);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.15);
}

.like-btn {
    background: var(--gradient-accent);
    color: #fff;
}

.super-btn {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-blue);
    border: 1px solid rgba(0, 245, 255, 0.15);
}

/* Swiped classes animation */
.swipe-left-anim {
    transform: translate(-120%, 50px) rotate(-15deg) !important;
    opacity: 0 !important;
}

.swipe-right-anim {
    transform: translate(120%, 50px) rotate(15deg) !important;
    opacity: 0 !important;
}

.swipe-super-anim {
    transform: translateY(-120%) scale(1.1) !important;
    opacity: 0 !important;
}

/* 5. REAL-TIME CHAT SCREEN */
.chat-header-row {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.back-btn-sm {
    background: transparent;
    color: #fff;
    font-size: 20px;
}

.chat-target-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.chat-target-profile img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-target-profile h5 {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-substatus {
    font-size: 9px;
    color: var(--color-green);
}

.chat-actions {
    display: flex;
    gap: 12px;
    color: #a0a0b0;
    font-size: 16px;
}

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

.chat-bubble {
    max-width: 75%;
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 1.5;
}

.msg-received {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom-left-radius: 4px;
    color: #fff;
}

.msg-sent {
    align-self: flex-end;
    background: var(--gradient-accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.typing-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px 10px 15px;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 5px;
    height: 5px;
    background: var(--color-pink);
    border-radius: 50%;
    animation: typingPulse 1s infinite alternate;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingPulse {
    0% { transform: translateY(0); opacity: 0.3; }
    100% { transform: translateY(-3px); opacity: 1; }
}

.typing-txt {
    font-size: 9px;
    color: #a0a0b0;
}

.chat-input-bar {
    height: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
    background: var(--bg-phone-base);
}

.chat-attach-btn {
    background: transparent;
    color: #a0a0b0;
    font-size: 18px;
}

.chat-text-area {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    height: 34px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.chat-text-area input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 11px;
    width: 100%;
}

.chat-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.bg-pink-gradient {
    background: var(--gradient-accent);
}

/* 6. VOICE ROOM SCREEN */
#screen-voice {
    background: linear-gradient(180deg, #160830 0%, #06060c 100%);
}

.voice-room-header {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.status-live-pill {
    background: rgba(255, 0, 127, 0.1);
    color: var(--color-pink);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.voice-room-body {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.voice-room-topic h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.voice-room-topic p {
    font-size: 11px;
    color: #a0a0b0;
    line-height: 1.4;
    margin-bottom: 20px;
}

.voice-speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
    align-content: flex-start;
}

.speaker-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.speaker-avatar {
    position: relative;
    width: 56px;
    height: 56px;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.speaker-avatar .story-placeholder {
    width: 100%;
    height: 100%;
    font-size: 14px;
}

.mic-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--color-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    border: 2px solid #1a0b35;
}

.mic-status.muted {
    background: #ff3b30;
}

.voice-glow-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    animation: speakerPulse 1.2s infinite alternate;
    pointer-events: none;
    opacity: 0;
}

.active-speaker .voice-glow-ring {
    opacity: 1;
}

@keyframes speakerPulse {
    0% { transform: scale(1.0); opacity: 0.5; box-shadow: 0 0 4px var(--color-green); }
    100% { transform: scale(1.06); opacity: 0.9; box-shadow: 0 0 10px var(--color-green); }
}

.font-delay-pulse .voice-glow-ring {
    animation-delay: 0.4s;
}

.speaker-profile span {
    font-size: 11px;
    font-weight: 700;
}

.role-tag {
    font-size: 8px;
    color: #a0a0b0;
    background: rgba(255, 255, 255, 0.05);
    padding: 1px 6px;
    border-radius: 4px;
}

.audio-wave-container {
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    margin-bottom: 20px;
}

.audio-wave-container .bar {
    width: 3px;
    height: 5px;
    background: var(--color-pink);
    animation: barDance 0.8s ease-in-out infinite alternate;
}

.audio-wave-container .bar:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.audio-wave-container .bar:nth-child(3) { height: 22px; animation-delay: 0.3s; }
.audio-wave-container .bar:nth-child(4) { height: 8px; animation-delay: 0.05s; }
.audio-wave-container .bar:nth-child(5) { height: 18px; animation-delay: 0.25s; }
.audio-wave-container .bar:nth-child(6) { height: 25px; animation-delay: 0.4s; }
.audio-wave-container .bar:nth-child(7) { height: 10px; animation-delay: 0.1s; }

@keyframes barDance {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1.3); }
}

.voice-controls-bar {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    margin-bottom: 70px;
}

.voice-ctrl-btn {
    background: transparent;
    color: #a0a0b0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 9px;
}

.voice-ctrl-btn i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
}

.voice-ctrl-btn.toggle-muted.active i {
    background: #ff3b30;
}

.text-pink i {
    color: var(--color-pink);
}

.leave-btn i {
    background: rgba(255, 59, 48, 0.15) !important;
    color: #ff3b30 !important;
}

/* 7. PROFILE SCREEN */
.profile-header-strip {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 700;
}

.profile-body-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    padding-bottom: 70px;
}

.profile-card-main {
    text-align: center;
    margin-bottom: 22px;
}

.profile-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.profile-avatar-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

.premium-medal-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #ffb703;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid var(--bg-phone-base);
}

.profile-card-main h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.profile-subtitle-info {
    font-size: 10px;
    color: #a0a0b0;
    margin-bottom: 12px;
}

.profile-stats-dashboard {
    display: flex;
    padding: 10px;
}

.p-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.p-stat span {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.p-stat p {
    font-size: 9px;
    color: #a0a0b0;
}

.border-sides {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-details-section h4 {
    font-size: 11px;
    color: var(--color-pink);
    letter-spacing: 0.05em;
    font-weight: 800;
    margin-bottom: 8px;
}

.profile-tags-grid {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.profile-tag-item {
    font-size: 9px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-bio-text {
    padding: 10px;
    font-size: 11px;
    color: #a0a0b0;
    line-height: 1.5;
    margin-bottom: 18px;
}

.upgrade-banner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    border-color: rgba(255, 0, 127, 0.2);
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.05) 0%, rgba(10, 8, 26, 0.6) 100%);
}

.upgrade-banner-card:hover {
    border-color: rgba(255, 0, 127, 0.4);
}

.ub-details h4 {
    font-size: 11px;
    color: #fff;
    margin-bottom: 3px;
}

.ub-details p {
    font-size: 9px;
    color: #a0a0b0;
    margin: 0;
    line-height: 1.3;
}

/* 8. NOTIFICATIONS SCREEN */
.notifications-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.notification-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.notification-item.unread {
    background: rgba(255, 0, 127, 0.02);
    border-color: rgba(255, 0, 127, 0.1);
}

.notif-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.bg-violet-gradient { background: var(--gradient-violet); color: #fff; font-size: 15px; }

.notif-body {
    flex: 1;
}

.notif-body p {
    font-size: 11px;
    color: #a0a0b0;
    line-height: 1.4;
}

.notif-time {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 3px;
    display: block;
}

.unread-dot {
    width: 6px;
    height: 6px;
    background: var(--color-pink);
    border-radius: 50%;
}

/* 9. PREMIUM SCREEN */
#screen-premium {
    background: radial-gradient(circle at top, #260a40 0%, #06060c 100%);
    padding: 0 15px;
}

.premium-header-close {
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.close-btn-sm {
    background: transparent;
    color: #fff;
    font-size: 20px;
}

.premium-scroll-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
}

.premium-headline {
    text-align: center;
    margin-bottom: 20px;
}

.crown-large {
    font-size: 36px;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
}

.premium-headline h2 {
    font-size: 18px;
    margin-bottom: 4px;
}

.premium-headline p {
    font-size: 11px;
    color: #a0a0b0;
}

.premium-packages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.premium-pack-card {
    padding: 18px;
    position: relative;
    cursor: pointer;
}

.premium-pack-card.premium-selected {
    border-color: var(--color-pink);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.15);
}

.pack-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-pink);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
}

.premium-pack-card h3 {
    font-size: 13px;
    margin-bottom: 6px;
}

.pack-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.pack-price .price-val {
    font-size: 24px;
    font-weight: 800;
}

.pack-price .duration {
    font-size: 10px;
    color: #a0a0b0;
    margin-left: 2px;
}

.pack-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pack-perks li {
    font-size: 10px;
    color: #a0a0b0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.perk-checked {
    color: var(--color-blue);
    font-size: 11px;
}

.premium-buy-btn {
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.35);
    margin-bottom: 12px;
}

.privacy-guarantee {
    text-align: center;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   MODAL POPUPS STYLING
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 320px;
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 48px;
    color: var(--color-green);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
    margin-bottom: 15px;
}

.modal-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 12px;
    color: #a0a0b0;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* ==========================================================================
   MEDIA QUERIES & RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2; /* Move text content below the visual mockup */
    }

    .hero-simulator-visual {
        order: 1; /* Move phone simulator visual to the top */
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .live-users-widget {
        justify-content: center;
    }
    
    .fc-1 {
        left: -20px;
    }
    
    .fc-2 {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 12px 16px;
    }

    .landing-nav-logo span {
        font-size: 18px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .nav-btn-secondary {
        display: none; /* Hide Call Now button in header on tablet/mobile to prevent squishing */
    }

    .nav-btn-primary {
        padding: 8px 14px;
        font-size: 12px;
    }

    .landing-nav-links {
        display: none;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stat-item {
        border-right: none;
    }
    
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-grid, .download-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .download-container {
        padding: 40px;
    }
    
    .fc-1, .fc-2 {
        display: none; /* Hide floating profiles around phone for tablet/mobile */
    }
}

@media (max-width: 480px) {
    /* Set section padding to fit mobile screens perfectly */
    .section-hero, 
    .section-features, 
    .section-stats, 
    .section-how, 
    .section-safety, 
    .section-testimonials, 
    .landing-footer {
        padding: 40px 16px !important;
    }

    .landing-nav-logo span {
        font-size: 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-simulator-visual {
        height: auto;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        margin-top: 20px;
    }

    .phone-simulator-shell {
        width: 280px;
        margin: 0 auto;
        transform: none;
        margin-bottom: 0;
    }

    .phone-bezel {
        width: 280px;
        height: 560px;
        border-radius: 32px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .hero-ctas a {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .website-modal-backdrop {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .website-modal-content {
        width: 100%;
        max-width: 380px;
        padding: 24px 20px;
        border-radius: 16px;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .website-modal-content h2 {
        font-size: 20px;
    }

    .website-modal-content p {
        font-size: 13px;
    }

    .modal-buttons-row {
        flex-direction: column;
        gap: 10px;
    }

    .modal-buttons-row button {
        width: 100%;
    }
}

/* ==========================================================================
   Age Verification Modal & Blocked Screen at Website Level
   ========================================================================== */
.website-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 7, 0.15); /* Super transparent dark overlay tint */
    backdrop-filter: blur(1px); /* Extremely light blur to keep background content sharp and fully visible */
    -webkit-backdrop-filter: blur(1px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition-smooth);
}

.website-modal-backdrop.hide {
    opacity: 0;
    pointer-events: none;
}

.website-modal-content {
    max-width: 450px;
    padding: 40px;
    text-align: center;
    background: rgba(12, 8, 28, 0.75); /* Highly glassmorphic modal box */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
}

.website-modal-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.website-modal-content p {
    font-size: 14px;
    color: #a0a0b0;
    line-height: 1.6;
}

.warning-icon {
    font-size: 48px;
    color: var(--color-pink);
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
    margin-bottom: 15px;
}

.modal-buttons-row {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.modal-buttons-row button {
    flex: 1;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

/* Access Blocked Screen Styles */
.blocked-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

.blocked-icon {
    font-size: 60px;
    color: #ff3b30;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 59, 48, 0.4);
}

.blocked-container h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.blocked-container p {
    font-size: 14px;
    color: #a0a0b0;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Full screen phone bezel photo */
.full-screen-phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



