/* =============================================================================
   LOVCONNECT STYLE SYSTEM - GLASSMORPHISM & NEON DARK THEME (UPDATED v3.1)
   ============================================================================= */

:root {
    --bg-main: #06070d;
    --bg-card: rgba(18, 20, 38, 0.6);
    --bg-card-hover: rgba(26, 29, 54, 0.80);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary: #ff3377;
    --primary-glow: rgba(255, 51, 119, 0.4);
    --secondary: #8833ff;
    --secondary-glow: rgba(136, 51, 255, 0.4);
    --success: #00e676;
    --success-glow: rgba(0, 230, 118, 0.4);
    --warning: #ffb300;
    --danger: #ff1744;
    
    --text-primary: #f5f6fa;
    --text-secondary: #9aa0b9;
    --text-muted: #5e6484;
    
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =============================================================================
   0. GÜVENLİK VE EKRAN KORUMA KATMANLARI (ANTI-SCREENSHOT & ANTI-COPY)
   ============================================================================= */

/* Ekranı PDF olarak kaydetme veya yazdırmayı (Ctrl+P) engelleme */
@media print {
    body {
        display: none !important;
        opacity: 0 !important;
    }
}

/* Küresel Resim Koruma Kuralları */
img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -ms-user-select: none !important;
    -moz-user-select: none !important;
    pointer-events: none !important; /* Doğrudan sağ tıklamayı engeller */
}

/* Sağ tıkla görsel kaydetmeyi önleyen saydam koruyucu katman */
.profile-photo-area::after, .post-detail-media::after, .post-item::after, .mock-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 5;
    pointer-events: auto; /* Tıklamaları bu saydam katman yakalar, görsel kaydedilemez */
}

/* Sayfa Bulanıklaştırma (Focus Kaybı Simülasyonu - Snipping Tool Koruması) */
.blur-active {
    filter: blur(25px) !important;
    transition: filter 0.2s ease;
}

/* Ekran Kaydı/Görüntüsü Takip Filigranı (Watermark) */
.watermark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; /* Her şeyin üstünde */
    pointer-events: none; /* Arayüz tıklamalarını engellemez */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}

.watermark-text {
    font-size: 28px;
    font-weight: 800;
    font-family: monospace;
    white-space: nowrap;
    color: var(--text-primary);
    transform: rotate(-35deg);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* =============================================================================
   Genel Tasarım & Sıfırlama
   ============================================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
    user-select: none; /* Metin seçmeyi engelle */
    -webkit-user-select: none;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Arka Plan Glow Efektleri */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.bg-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
}

/* =============================================================================
   1. LANDING PAGE STYLES (Açılış Sayfası)
   ============================================================================= */

.landing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.landing-header {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

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

.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    padding: 80px 0;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    align-self: flex-start;
    background: rgba(255, 51, 119, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 51, 119, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .hero-badge {
        align-self: center;
    }
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .hero-buttons {
        justify-content: center;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .hero-stats {
        justify-content: center;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item strong {
    font-size: 28px;
    font-weight: 700;
}

.stat-item span {
    color: var(--text-secondary);
    font-size: 14px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

@media (max-width: 900px) {
    .hero-visual {
        display: none;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.preview-card {
    width: 320px;
}

.preview-card.offset {
    align-self: flex-end;
}

.preview-avatar {
    font-size: 40px;
    background: rgba(255, 255, 255, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.preview-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.preview-status {
    font-size: 12px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.status-dot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: flash 1s infinite alternate;
}

.preview-badge {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

/* Nasıl Çalışır */
.how-it-works {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-secondary);
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(136, 51, 255, 0.2);
}

.step-num {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.landing-footer {
    height: 70px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* =============================================================================
   2. AUTH MODAL (Giriş & Kayıt Popup)
   ============================================================================= */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    z-index: 150;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(18, 20, 38, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}

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

.auth-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.form-select option {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

.auth-toggle-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 20px;
}

.auth-toggle-text span {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

/* SMS OTP */
.otp-instruction {
    text-align: center;
    margin-bottom: 20px;
}

.otp-instruction p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.otp-mock-banner {
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.otp-mock-banner strong {
    color: var(--success);
    font-size: 16px;
}

/* =============================================================================
   3. APP DASHBOARD STYLES (Ana Panel)
   ============================================================================= */

.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    backdrop-filter: blur(8px);
    transition: filter 0.2s ease;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: rgba(10, 11, 22, 0.65);
    border-right: 1px solid var(--border-color);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding-left: 10px;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px var(--primary));
    animation: pulse 2s infinite alternate;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 14px 20px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.nav-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-btn.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(255, 51, 119, 0.15), rgba(136, 51, 255, 0.15));
    border-color: rgba(255, 51, 119, 0.25);
    box-shadow: 0 4px 20px rgba(255, 51, 119, 0.05);
}

.nav-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* User Wallet Card Widget */
.user-wallet-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-top: auto;
}

.wallet-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-avatar {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.05);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
}

.user-role {
    font-size: 11px;
    color: var(--text-secondary);
}

.wallet-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.balance-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.balance-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--success);
    text-shadow: 0 0 10px var(--success-glow);
}

/* Main Content Area */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Topbar */
.topbar {
    height: 70px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(10, 11, 22, 0.25);
    backdrop-filter: blur(10px);
}

.simulation-speed-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: flash 1s infinite alternate;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 500;
}

.radio-label input {
    accent-color: var(--primary);
}

/* Tab Layouts */
.tab-content {
    display: none;
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #9aa0b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.profile-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 51, 119, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-photo-area {
    height: 240px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.profile-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.status-online {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.status-busy {
    background: rgba(255, 179, 0, 0.15);
    color: var(--warning);
    border: 1px solid rgba(255, 179, 0, 0.3);
}

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

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-online .status-dot {
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
}

.status-busy .status-dot {
    background-color: var(--warning);
}

.status-offline .status-dot {
    background-color: var(--text-secondary);
}

.profile-rate-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(10, 11, 22, 0.75);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.profile-info {
    padding: 20px;
}

.profile-name-age {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-gender {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.profile-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 40px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 15; /* overlay'in üstünde olsun ki tıklanabilsin */
}

/* Onay Bekleyen */
.pending-approval-view {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.pending-view-card {
    max-width: 600px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pending-view-card h2 {
    font-size: 28px;
    font-weight: 700;
}

.pending-view-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-alert {
    background: rgba(136, 51, 255, 0.1);
    border: 1px solid rgba(136, 51, 255, 0.2);
    color: var(--text-primary);
    padding: 16px;
    border-radius: 12px;
    font-size: 13px;
    text-align: left;
    line-height: 1.5;
}

/* =============================================================================
   5. PROFİLİM VE POST GRID DÜZENİ
   ============================================================================= */

.profile-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}

.profile-edit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-avatar-display {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    border: 2px solid var(--border-color);
}

.profile-stats-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 5px;
}

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

.p-stat strong {
    font-size: 18px;
    font-weight: 700;
}

.p-stat span {
    font-size: 12px;
    color: var(--text-secondary);
}

.profile-feed-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.create-post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.create-post-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.my-posts-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.post-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    aspect-ratio: 1 / 1;
}

.post-item:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(255, 51, 119, 0.15);
}

.post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 700;
    z-index: 10; /* transparent overlay'in üstünde olsun */
}

.post-item:hover .post-overlay-stats {
    opacity: 1;
}

/* =============================================================================
   6. KAMUYA AÇIK PROFİL İNCELEME MODALI
   ============================================================================= */

.profile-detail-card {
    width: 90%;
    max-width: 900px;
    background: rgba(20, 22, 43, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.profile-detail-header {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 20;
}

.profile-detail-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 10px;
}

@media (max-width: 800px) {
    .profile-detail-content {
        grid-template-columns: 1fr;
    }
}

.profile-detail-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding-right: 30px;
}

@media (max-width: 800px) {
    .profile-detail-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 30px;
    }
}

.profile-detail-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border: 2px solid var(--border-color);
}

.pd-stats-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.pd-actions-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-detail-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-detail-right h3 {
    font-size: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* =============================================================================
   7. POST DETAY SİMÜLASYONU (Light-box / Yorum ve Beğeni Ekranı)
   ============================================================================= */

.post-detail-card {
    width: 90%;
    max-width: 840px;
    height: 80%;
    max-height: 580px;
    background: rgba(15, 17, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.post-detail-header {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 30;
}

.post-detail-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 100%;
    width: 100%;
}

@media (max-width: 750px) {
    .post-detail-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

.post-detail-media {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.post-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-detail-sidebar {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-left: 1px solid var(--border-color);
    background: rgba(10, 11, 22, 0.4);
    z-index: 10;
}

.post-author-row {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-author-avatar {
    font-size: 24px;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-author-name {
    font-weight: 600;
    font-size: 14px;
}

.post-date {
    font-size: 11px;
    color: var(--text-muted);
}

.post-caption-box {
    padding: 15px 20px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    border-bottom: 1px solid var(--border-color);
}

.comments-scroll-area {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    display: flex;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.comment-author-avatar {
    font-size: 16px;
    background: rgba(255,255,255,0.05);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-text-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 12px;
    flex-grow: 1;
}

.comment-author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 6px;
}

.post-interaction-box {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 11, 22, 0.8);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-actions-hud {
    display: flex;
    align-items: center;
}

.interaction-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
}

.like-icon {
    font-size: 20px;
    transition: var(--transition);
}

.interaction-btn:hover .like-icon {
    transform: scale(1.2);
}

.add-comment-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.add-comment-row input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-family: var(--font-main);
}

.add-comment-row input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    flex-grow: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.btn-danger:hover {
    background: #d50000;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

/* Badge classes */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

.badge-gray {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.badge-green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
}

/* Publisher Dashboard */
.publisher-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
}

.stat-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-success {
    color: var(--success);
}

.stat-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.withdrawal-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .withdrawal-section {
        grid-template-columns: 1fr;
    }
}

.withdrawal-form, .withdrawal-history, .admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
}

.withdrawal-form h3, .withdrawal-history h3, .admin-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.form-group label {
    font-size: 13px;
    color: var(--text-secondary);
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 14px;
}

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

/* Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

table th, table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

table th {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Admin Panel Specifics */
.admin-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.admin-modules {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

@media (max-width: 1000px) {
    .admin-modules {
        grid-template-columns: 1fr;
    }
}

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

.pending-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pending-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.pending-avatar {
    font-size: 24px;
}

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

.pending-gender {
    font-size: 11px;
    color: var(--text-secondary);
}

.pending-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    justify-content: flex-end;
}

.pending-media-preview {
    display: flex;
    gap: 12px;
    background: rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.mock-img-placeholder {
    width: 90px;
    height: 70px;
    background: #15182b;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--text-secondary);
    text-align: center;
    padding: 2px;
    position: relative;
}

.match-status-alert {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.match-success {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.match-danger {
    background: rgba(255, 23, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 23, 68, 0.2);
}

/* WebRTC Call Overlay */
.call-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.call-card {
    width: 90%;
    max-width: 960px;
    height: 85%;
    max-height: 680px;
    background: rgba(20, 22, 43, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.call-header {
    height: 90px;
    padding: 0 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.call-avatar {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.05);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.call-status-badge {
    font-size: 12px;
    color: var(--primary);
    animation: flash 1s infinite alternate;
}

.billing-hud {
    display: flex;
    gap: 20px;
}

.hud-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.hud-item.highlight {
    border-color: var(--success);
    color: var(--success);
}

.hud-label {
    color: var(--text-secondary);
}

.hud-value {
    font-weight: 700;
}

/* Video Feed Containers */
.video-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    background: #000;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.callee-video {
    grid-area: 1 / 1 / 2 / 2;
}

.caller-video {
    position: absolute;
    width: 200px;
    height: 150px;
    bottom: 20px;
    right: 20px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10;
    background: #111;
}

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

.video-feed.hidden {
    display: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.video-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(10, 11, 22, 0.7);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    backdrop-filter: blur(8px);
}

.call-footer {
    height: 90px;
    padding: 0 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call-footer .call-footer-timer {
    font-size: 16px;
    color: var(--text-secondary);
}

.call-footer .call-footer-timer strong {
    font-size: 20px;
    color: var(--text-primary);
    font-family: monospace;
    margin-left: 8px;
}

/* Toast Messages */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 11, 22, 0.85);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 200;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

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

@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px var(--primary-glow)); }
    100% { transform: scale(1.08); filter: drop-shadow(0 0 15px var(--primary)); }
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Report Table Styling */
.report-table th {
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-color);
}
.report-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}
.report-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}
.report-table td {
    padding: 12px 10px;
    color: #fff;
    vertical-align: middle;
}

/* =============================================================================
   8. HEDİYE GÖNDERİM ANİMASYONLARI
   ============================================================================= */

.gift-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99;
    overflow: hidden;
}

.gift-popup-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 140px;
    filter: drop-shadow(0 0 25px rgba(255, 51, 119, 0.8));
    animation: giftPopEffect 2.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    z-index: 100;
}

.gift-particle {
    position: absolute;
    bottom: -50px;
    font-size: 32px;
    animation: giftFloatUp 2.8s ease-out forwards;
    opacity: 0;
}

@keyframes giftPopEffect {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(-45deg);
        opacity: 0;
    }
    15% {
        transform: translate(-50%, -50%) scale(1.4) rotate(10deg);
        opacity: 1;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1) rotate(-5deg);
    }
    35% {
        transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
    }
    80% {
        transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 0 35px rgba(255, 51, 119, 1));
    }
    100% {
        transform: translate(-50%, -50%) scale(0.6) translateY(-100px);
        opacity: 0;
    }
}

@keyframes giftFloatUp {
    0% {
        transform: translateY(0) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(-550px) scale(1.5) rotate(360deg);
        opacity: 0;
    }
}

