/* 
   ==========================================================================
   XXDATE.IN Premium Seductive Landing Page Stylesheet
   Design System: Cyberpunk Seductive (AMOLED Dark + Neon Pink + Velvet Purple)
   ==========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,500&display=swap');

:root {
    --bg-base: #060608;
    --bg-surface: #111116;
    --bg-card: rgba(22, 22, 30, 0.65);
    
    --primary: #ff1f6d;
    --primary-glow: rgba(255, 31, 109, 0.5);
    --primary-hover: #e0125c;
    
    --secondary: #8b5cf6;
    --secondary-glow: rgba(139, 92, 246, 0.4);
    
    --success: #10b981;
    --warning: #f59e0b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 31, 109, 0.15);
    --border-glow: rgba(255, 31, 109, 0.35);
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient glow backgrounds */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 31, 109, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Utility Glassmorphism class */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-premium {
    background: linear-gradient(135deg, rgba(255, 31, 109, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%), var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 31, 109, 0.25);
    box-shadow: 0 8px 32px 0 rgba(255, 31, 109, 0.15);
}

/* Base components styling */
.container {
    max-width: 600px; /* Highly optimized for mobile layout on desktop too */
    margin: 0 auto;
    padding: 0 1.25rem 2rem 1.25rem;
}

/* Entrance Gateway Modal */
.gateway-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 6, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    backdrop-filter: blur(24px);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gateway-content {
    max-width: 420px;
    width: 100%;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 31, 109, 0.3);
    box-shadow: 0 0 40px rgba(255, 31, 109, 0.15);
}

.gateway-logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.logo-accent {
    color: var(--primary);
    text-shadow: 0 0 12px var(--primary-glow);
}

.gateway-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, #ffffff, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gateway-text {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-bottom: 2rem;
}

.warning-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.gateway-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #d91b5c 100%);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 31, 109, 0.7);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

/* Header bar */
header {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: dotPulse 1.6s infinite;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #ffe5ec 30%, #ff85a2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 1.5rem auto;
}

/* Pulse call button */
.pulse-cta {
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
    animation: buttonPulse 2s infinite;
    margin-bottom: 1rem;
}

.live-counter-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.highlight-green {
    color: var(--success);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

/* Simulated Video Call Ring Widget */
.incoming-call-box {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: 24px;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 1.25rem;
    z-index: 999;
    display: none;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(255, 31, 109, 0.25);
    border: 1px solid rgba(255, 31, 109, 0.4);
}

.incoming-call-box.active {
    display: block;
    transform: translateY(0);
}

.incoming-call-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.caller-avatar-wrapper {
    position: relative;
}

.caller-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.caller-ring-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: ringWaves 1.5s infinite;
    z-index: -1;
}

.caller-info h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}

.caller-status {
    color: var(--primary);
    font-size: 0.775rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-blinker {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: blinker 1s infinite alternate;
}

.incoming-call-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-accept {
    background: #10b981;
    color: white;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-accept:hover {
    background: #059669;
    transform: scale(1.02);
}

.btn-decline {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.btn-decline:hover {
    background: rgba(239, 68, 68, 0.25);
}

/* Call Simulation Screen Modal */
.video-screen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.98);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
}

.video-screen-modal.active {
    display: flex;
}

.video-screen-container {
    width: 100%;
    max-width: 440px;
    height: 100%;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 24px;
    box-shadow: 0 10px 45px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 440px) {
    .video-screen-container {
        border-radius: 0;
        height: 100%;
        max-height: 100%;
    }
}

.video-feed {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 70%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.video-ui-overlay * {
    pointer-events: auto;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-model-info h3 {
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.video-model-info span {
    font-size: 0.775rem;
    background: rgba(255, 31, 109, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 0.5rem;
}

.video-timer {
    background: rgba(0,0,0,0.5);
    padding: 0.35rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-reconnecting-toast {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,31,109,0.3);
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    pointer-events: none;
}

.video-reconnecting-toast p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,31,109,0.2);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.video-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.video-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.control-btn:hover {
    background: rgba(255,255,255,0.25);
}

.control-btn.btn-hangup {
    background: #ef4444;
    border: none;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.control-btn.btn-hangup:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* Seductive Modal overlay when call stops / click accept */
.unlock-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,5,8,0.92);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    backdrop-filter: blur(20px);
}

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

.unlock-content {
    max-width: 400px;
    width: 100%;
    padding: 2.25rem 1.75rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 31, 109, 0.35);
    box-shadow: 0 10px 40px rgba(255, 31, 109, 0.2);
    position: relative;
    overflow: hidden;
}

.unlock-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin: 0 auto 1.25rem auto;
    box-shadow: 0 0 15px var(--primary-glow);
}

.unlock-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.unlock-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

/* Live Voice Notes Preview Card */
.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audio-msg-card {
    border-radius: 20px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.audio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.audio-host-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.audio-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.audio-name-details h4 {
    font-weight: 700;
    font-size: 0.95rem;
}

.audio-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.audio-waves-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.85rem;
}

.play-trigger-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s, background 0.2s;
    flex-shrink: 0;
}

.play-trigger-btn:hover {
    transform: scale(1.05);
    background: var(--primary-hover);
}

.waveform-svg {
    width: 100%;
    height: 24px;
    fill: var(--text-muted);
}

.waveform-track-filled {
    width: 0%;
    height: 100%;
    fill: var(--primary);
    transition: width 0.1s linear;
}

.audio-player-timing {
    font-size: 0.725rem;
    color: var(--text-muted);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.audio-warning-hint {
    font-size: 0.775rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

/* Local Hot Girls Gallery */
.hosts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 380px) {
    .hosts-grid {
        grid-template-columns: 1fr;
    }
}

.host-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    aspect-ratio: 4 / 5;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.host-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,31,109,0.3);
    box-shadow: 0 4px 20px rgba(255,31,109,0.12);
}

.host-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.85rem;
}

.host-details {
    margin-bottom: 0.65rem;
}

.host-headline-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.host-headline-row h4 {
    font-size: 1rem;
    font-weight: 700;
}

.badge-verified {
    background: #00b4d8;
    color: white;
    font-size: 0.6rem;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.host-meta-row {
    font-size: 0.725rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.15rem;
}

.host-online-dot {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--success);
}

.btn-card-action {
    background: linear-gradient(135deg, var(--primary) 0%, #d91b5c 100%);
    border: none;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s;
}

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

/* Multi-step Matchfinder Funnel Container */
.quiz-widget {
    border-radius: 24px;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(255, 31, 109, 0.25);
    box-shadow: 0 8px 30px rgba(255, 31, 109, 0.08);
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 1.75rem;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-step {
    display: none;
    animation: stepFade 0.4s ease forwards;
}

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

.quiz-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.quiz-step-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quiz-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quiz-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-option:hover {
    background: rgba(255, 31, 109, 0.04);
    border-color: rgba(255, 31, 109, 0.4);
    color: #fff;
    transform: translateX(4px);
}

.quiz-option::after {
    content: '→';
    font-size: 1.1rem;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}

.quiz-option:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

/* Loading/Matching State style */
.matching-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    text-align: center;
}

.radar-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 31, 109, 0.25);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-spinner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    border-top-color: transparent;
    border-left-color: transparent;
    animation: spin 1.2s linear infinite;
}

.radar-pulse {
    width: 44px;
    height: 44px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.matching-status-log {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
    width: 100%;
    margin-top: 1rem;
    min-height: 42px;
}

/* Dating Testimonials (WhatsApp / Review Cards) */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.review-card {
    border-radius: 20px;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.reviewer-details h5 {
    font-weight: 700;
    font-size: 0.9rem;
}

.review-rating {
    color: var(--warning);
    font-size: 0.775rem;
}

.review-text {
    font-size: 0.875rem;
    color: #e2e8f0;
    line-height: 1.5;
    position: relative;
    padding-left: 0.5rem;
}

.review-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.chat-screenshot-bubble {
    background: #0b141a;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-top: 0.85rem;
    border: 1px solid rgba(255,255,255,0.04);
}

.whatsapp-message {
    background: #202c33;
    border-radius: 8px 8px 8px 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    max-width: 85%;
    margin-bottom: 0.5rem;
    color: #e9edef;
    position: relative;
}

.whatsapp-message-received {
    background: #005c4b;
    border-radius: 8px 8px 0 8px;
    margin-left: auto;
    color: #e9edef;
}

.whatsapp-time {
    font-size: 0.65rem;
    color: #8696a0;
    text-align: right;
    margin-top: 0.15rem;
}

/* Security Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.trust-badge-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1rem 0.5rem;
    border-radius: 12px;
}

.trust-icon {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    display: block;
}

.trust-badge-item h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.15rem;
}

.trust-badge-item p {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Footer Section */
footer {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 460px;
    margin: 0 auto;
}

/* Keyframes & Animations */
@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 31, 109, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 31, 109, 0.8);
        transform: translateY(-1px);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 31, 109, 0.4);
    }
}

@keyframes ringWaves {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes blinker {
    to {
        opacity: 0.3;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes stepFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
