/* ============================================
   SOHBETROOM - PROFIL STILLERI v3 (Premium)
   ============================================ */

/* ===== PROFIL HEADER ===== */
.prf-header {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* Banner */
.prf-banner {
    height: 200px;
    background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(217,70,239,0.2), rgba(59,130,246,0.15));
    position: relative;
    overflow: hidden;
}
.prf-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prf-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,6,18,0.6) 100%);
}

/* Icerik */
.prf-content {
    padding: 0 28px 28px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

/* Avatar + Stats Row (Instagram tarzı) */
.prf-top-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 16px;
}
.prf-avatar-section { flex-shrink: 0; }
.prf-stats-inline {
    display: flex;
    gap: 8px;
    flex: 1;
    padding-bottom: 8px;
}
.prf-stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(20, 10, 40, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    flex: 1;
    min-width: 0;
}
.prf-stat-inline:hover {
    border-color: rgba(139,92,246,0.3);
    background: rgba(20, 10, 40, 0.9);
    transform: translateY(-2px);
}
.prf-stat-num {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.prf-stat-txt {
    font-size: 0.78rem;
    color: #c0b8d0;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
}

/* Light theme stat renkleri */
[data-theme="light"] .prf-stat-inline {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(139,92,246,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
[data-theme="light"] .prf-stat-num {
    color: #1a0a2e;
}
[data-theme="light"] .prf-stat-txt {
    color: #6b6b80;
}
[data-theme="light"] .prf-stat-inline:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 4px 12px rgba(139,92,246,0.1);
}

.prf-avatar-ring {
    position: relative;
    display: inline-block;
}
.prf-avatar {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    object-fit: cover;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.prf-online-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4ADE80;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 12px rgba(74,222,128,0.4);
}

/* Isim ve bilgiler */
.prf-info { margin-bottom: 20px; }

.prf-name-row { margin-bottom: 8px; }
.prf-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.prf-verified { color: #60A5FA; }
.prf-admin-badge {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(239,68,68,0.15));
    border: 1px solid rgba(245,158,11,0.3);
    color: #FBBF24;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.prf-handle {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.prf-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 12px 0 0;
    max-width: 500px;
}

/* Meta */
.prf-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}
.prf-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.84rem;
    color: var(--text-muted);
}
.prf-meta-online { color: #4ADE80 !important; }

/* Sosyal medya */
.prf-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.prf-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.25s ease;
}
.prf-social-link:hover { transform: translateY(-2px); }
.sl-instagram:hover { background: rgba(225,48,108,0.12); color: #E1306C; border-color: rgba(225,48,108,0.3); }
.sl-twitter:hover { background: rgba(255,255,255,0.08); color: #fff; }
.sl-tiktok:hover { background: rgba(255,255,255,0.08); color: #fff; }
.sl-youtube:hover { background: rgba(255,0,0,0.12); color: #FF0000; border-color: rgba(255,0,0,0.3); }

.sl-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: white;
    font-style: normal;
}
.si-instagram { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.si-twitter { background: #000; }
.si-tiktok { background: #000; }
.si-youtube { background: #FF0000; }

/* ===== AKSIYONLAR ===== */
.prf-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}
.prf-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-body);
}
.prf-btn-follow {
    background: linear-gradient(135deg, #8B5CF6, #D946EF);
    color: white;
    box-shadow: 0 6px 24px rgba(139,92,246,0.3);
}
.prf-btn-follow:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(139,92,246,0.4); }
.prf-btn-follow.following {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-secondary);
    box-shadow: none;
}

.prf-btn-msg, .prf-btn-more {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 11px 14px;
}
.prf-btn-msg:hover, .prf-btn-more:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
}

.prf-btn-edit {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-secondary);
}
.prf-btn-edit:hover {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.3);
    color: var(--primary-light);
}

/* Daha fazla menu */
.prf-more-wrap { 
    position: relative; 
    z-index: 9999;
}
.prf-more-menu {
    display: none;
    position: fixed;
    top: auto;
    right: 10px;
    background: var(--prf-menu-bg, rgba(20,10,35,0.98));
    backdrop-filter: blur(24px);
    border: 1px solid var(--prf-menu-border, rgba(255,255,255,0.1));
    border-radius: 14px;
    min-width: 200px;
    padding: 6px;
    box-shadow: var(--prf-menu-shadow, 0 12px 40px rgba(0,0,0,0.5));
    z-index: 99999;
}
.prf-more-wrap.open .prf-more-menu { display: block; }
.prf-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}
.prf-menu-item:hover { background: rgba(255,255,255,0.06); color: var(--text-white); }
.prf-menu-item.active { color: #F87171; }
.prf-menu-danger:hover { background: rgba(239,68,68,0.1); color: #F87171; }

/* ===== ISTATISTIKLER ===== */
.prf-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.prf-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 12px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}
.prf-stat-item:hover {
    border-color: rgba(139,92,246,0.2);
    background: rgba(139,92,246,0.04);
    transform: translateY(-3px);
}
.prf-stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}
.prf-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== TABLAR ===== */
.prf-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.prf-tabs::-webkit-scrollbar { display: none; }
.prf-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 14px 24px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    margin-bottom: -1px;
}
.prf-tab:hover { color: var(--text-white); }
.prf-tab.active {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
    font-weight: 600;
}

/* ===== GONDERI FEED (Twitter tarzı) ===== */
.prf-posts-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prf-feed-item {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}
.prf-feed-item:hover {
    background: rgba(255,255,255,0.03);
}

.prf-feed-avatar {
    flex-shrink: 0;
}
.prf-feed-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.prf-feed-body {
    flex: 1;
    min-width: 0;
}

.prf-feed-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.prf-feed-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-white);
}
.prf-feed-handle {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.prf-feed-dot {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.prf-feed-time {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.prf-feed-text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-secondary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 8px;
}

.prf-feed-image {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 10px;
    display: block;
}

.prf-feed-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.prf-feed-actions {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}
.prf-feed-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}
.prf-feed-action:hover {
    background: rgba(255,255,255,0.06);
}
.prf-feed-action.act-like:hover { color: #F43F5E; background: rgba(244,63,94,0.1); }
.prf-feed-action.act-comment:hover { color: #3B82F6; background: rgba(59,130,246,0.1); }
.prf-feed-action.act-bookmark:hover { color: #F59E0B; background: rgba(245,158,11,0.1); }
.prf-feed-action.act-views { cursor: default; }
.prf-feed-action svg { width: 16px; height: 16px; }

/* Eski grid uyumluluğu (kaldırılmadı, gizlendi) */
.prf-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.prf-post-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.prf-post-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139,92,246,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.prf-post-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.prf-post-item:hover img { transform: scale(1.06); }

.prf-post-text-card {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(217,70,239,0.12));
}
.prf-post-text-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
    word-wrap: break-word;
}

.prf-post-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
}

.prf-post-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.prf-post-item:hover .prf-post-hover { opacity: 1; }
.prf-post-hover span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== ESKI UYUMLULUK ===== */
.profile-header { border-radius: 24px; overflow: hidden; margin-bottom: 20px; }
.profile-cover { height: 200px; background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(217,70,239,0.2)); position: relative; }
.profile-cover img { width: 100%; height: 100%; object-fit: cover; }
.profile-info-box { padding: 0 28px 28px; margin-top: -50px; position: relative; }
.profile-avatar-wrapper { margin-bottom: 16px; }
.profile-avatar-gradient { display: inline-block; }
.profile-avatar { width: 100px; height: 100px; border-radius: 22px; object-fit: cover; border: 4px solid var(--bg-dark); }
.profile-name { font-size: 1.5rem; font-weight: 800; color: var(--text-white); margin: 0; }
.profile-username { color: var(--text-muted); font-size: 0.9rem; }
.profile-bio { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin: 12px 0 0; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.profile-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.84rem; color: var(--text-muted); }
.profile-actions { display: flex; gap: 10px; margin-top: 16px; }
.profile-stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.profile-stat { text-align: center; padding: 16px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); text-decoration: none; }
.stat-value { font-size: 1.5rem; font-weight: 800; color: var(--text-white); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); }
.profile-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.profile-post-item { position: relative; border-radius: 14px; overflow: hidden; text-decoration: none; transition: transform 0.3s ease; }
.profile-post-item:hover { transform: translateY(-3px); }
.profile-post-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.profile-post-text { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 16px; background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.1)); color: var(--text-secondary); font-size: 0.85rem; text-align: center; }
.profile-post-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; gap: 16px; opacity: 0; transition: opacity 0.3s ease; }
.profile-post-item:hover .profile-post-overlay { opacity: 1; }
.profile-post-overlay span { color: white; font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 4px; }

/* Avatar upload */
.avatar-upload { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); }
.avatar-upload-preview { width: 80px; height: 80px; border-radius: 20px; object-fit: cover; border: 2px solid rgba(139,92,246,0.3); }
.avatar-upload-actions { display: flex; flex-direction: column; gap: 6px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); }

/* Profile meta link (eski) */
.profile-meta-link { color: var(--primary-light) !important; text-decoration: none; transition: all 0.2s ease; }
.profile-meta-link:hover { color: var(--primary) !important; text-decoration: underline; }

/* Badge CSS */
.ex-badge { display: inline-flex; align-items: center; gap: 3px; padding: 3px 8px; border-radius: 6px; font-size: 0.65rem; font-weight: 700; backdrop-filter: blur(8px); }
.ex-badge.badge-gold { background: rgba(255,215,0,0.2); border: 1px solid rgba(255,215,0,0.3); color: #FFD700; }
.ex-badge.badge-fire { background: rgba(255,87,34,0.2); border: 1px solid rgba(255,87,34,0.3); color: #FF6B35; }
.ex-badge.badge-electric { background: rgba(139,92,246,0.2); border: 1px solid rgba(139,92,246,0.3); color: #A78BFA; }
.ex-badge.badge-pink { background: rgba(236,72,153,0.2); border: 1px solid rgba(236,72,153,0.3); color: #F472B6; }
.ex-badge.badge-cyan { background: rgba(6,182,212,0.2); border: 1px solid rgba(6,182,212,0.3); color: #22D3EE; }

/* ===== LIGHT THEME ===== */
[data-theme="light"] .prf-header {
    background: rgba(255,255,255,0.9);
    border-color: rgba(139,92,246,0.12);
    box-shadow: 0 8px 40px rgba(139,92,246,0.08);
}

[data-theme="light"] .prf-more-menu,
html[data-theme="light"] .prf-more-menu {
    --prf-menu-bg: #ffffff;
    --prf-menu-border: rgba(139,92,246,0.18);
    --prf-menu-shadow: 0 12px 40px rgba(139,92,246,0.15);
    background: #ffffff !important;
    backdrop-filter: blur(24px);
    border: 1px solid rgba(139,92,246,0.18) !important;
    box-shadow: 0 12px 40px rgba(139,92,246,0.15), 0 0 0 1px rgba(139,92,246,0.08) !important;
}

[data-theme="light"] .prf-menu-item,
html[data-theme="light"] .prf-menu-item {
    color: #1a0a2e !important;
}

[data-theme="light"] .prf-menu-item:hover,
html[data-theme="light"] .prf-menu-item:hover {
    background: rgba(139,92,246,0.1) !important;
    color: #1a0a2e !important;
}

[data-theme="light"] .prf-menu-item.active,
html[data-theme="light"] .prf-menu-item.active {
    color: #F87171 !important;
}

[data-theme="light"] .prf-menu-danger:hover,
html[data-theme="light"] .prf-menu-danger:hover {
    background: rgba(239,68,68,0.08) !important;
    color: #DC2626 !important;
}

[data-theme="light"] .prf-btn-msg,
[data-theme="light"] .prf-btn-more {
    background: rgba(139,92,246,0.06);
    border-color: rgba(139,92,246,0.15);
    color: rgba(26,10,46,0.65);
}

[data-theme="light"] .prf-btn-msg:hover,
[data-theme="light"] .prf-btn-more:hover {
    background: rgba(139,92,246,0.12);
    color: #1a0a2e;
}

[data-theme="light"] .prf-btn-edit {
    background: rgba(139,92,246,0.06);
    border-color: rgba(139,92,246,0.15);
    color: rgba(26,10,46,0.65);
}

[data-theme="light"] .prf-stat-item {
    background: rgba(255,255,255,0.8);
    border-color: rgba(139,92,246,0.1);
}

[data-theme="light"] .prf-social-link {
    background: rgba(139,92,246,0.05);
    border-color: rgba(139,92,246,0.12);
}

[data-theme="light"] .prf-tabs {
    border-bottom-color: rgba(139,92,246,0.1);
}

[data-theme="light"] .prf-post-item {
    background: rgba(255,255,255,0.8);
    border-color: rgba(139,92,246,0.1);
}

[data-theme="light"] .prf-post-text-card {
    background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(217,70,239,0.05));
}

[data-theme="light"] .prf-post-text-card p {
    color: rgba(26,10,46,0.8);
}

[data-theme="light"] .prf-btn-follow.following {
    background: rgba(139,92,246,0.06);
    border-color: rgba(139,92,246,0.15);
    color: rgba(26,10,46,0.65);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .prf-banner { height: 150px; }
    .prf-content { padding: 0 16px 20px; margin-top: -40px; }
    .prf-avatar { width: 90px; height: 90px; border-radius: 22px; }
    .prf-name { font-size: 1.3rem; }
    .prf-top-row { gap: 12px; }
    .prf-stats-inline { gap: 6px; padding-bottom: 4px; }
    .prf-stat-inline { padding: 10px 8px; border-radius: 12px; }
    .prf-stat-num { font-size: 1.1rem; }
    .prf-stat-txt { font-size: 0.72rem; }
    .prf-posts-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .prf-post-item { border-radius: 10px; }
    .prf-tab { padding: 12px 16px; font-size: 0.85rem; }
    .prf-action-btn { padding: 10px 16px; font-size: 0.85rem; }
    
    /* Mobilde menu daha geniş ve daha iyi görünür */
    .prf-more-menu {
        min-width: 220px;
        right: 10px !important;
        left: auto !important;
    }
}

@media (max-width: 480px) {
    .prf-top-row { gap: 10px; }
    .prf-stats-inline { gap: 4px; }
    .prf-stat-inline { padding: 8px 6px; border-radius: 10px; }
    .prf-stat-num { font-size: 1rem; }
    .prf-stat-txt { font-size: 0.68rem; }
    .prf-avatar { width: 80px; height: 80px; border-radius: 20px; }
    .prf-posts-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}
