/* --- PREMİUM OYUNCU LİSTESİ TASARIMI --- */

#players-view {
    animation: fadeIn 0.5s ease-out forwards;
}

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

/* Panel Özelleştirmeleri */
.panel-container {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur)) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    border-radius: 24px;
}

.panel-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.panel-title {
    font-size: 1.4rem;
    font-weight: 500;
    background: linear-gradient(90deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

/* Premium Kullanıcı Kartları (Minimal Liste Görünümü) */
.user-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0;
}

.user-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 0.5rem !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: 0 !important;
    transition: background 0.2s ease !important;
    position: relative;
    overflow: hidden;
}

.user-card:last-child {
    border-bottom: none !important;
}

.user-card:hover {
    background: rgba(255, 255, 255, 0.02) !important;
}

.user-info {
    width: auto;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    border: 1px solid rgba(255,255,255,0.05);
}

.user-details h3 {
    font-size: 1rem !important;
    margin-bottom: 0.1rem !important;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.user-details p {
    font-size: 0.8rem !important;
    opacity: 0.6;
    margin: 0;
    font-family: 'SF Mono', ui-monospace, monospace;
}

.user-actions {
    width: auto;
    border-top: none;
    padding-top: 0;
    display: flex !important;
    justify-content: flex-end !important;
    position: relative;
    z-index: 1;
}

.btn-action {
    padding: 0.4rem 1rem !important;
    border-radius: 6px !important;
    font-weight: 400 !important;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-ban {
    background: transparent !important;
    border: 1px solid rgba(255, 69, 58, 0.3) !important;
    color: var(--danger-color) !important;
}

.btn-ban:hover {
    background: rgba(255, 69, 58, 0.1) !important;
    border-color: rgba(255, 69, 58, 0.5) !important;
}

.btn-unban {
    background: transparent !important;
    border: 1px solid rgba(40, 199, 111, 0.3) !important;
    color: #28c76f !important;
}

.btn-unban:hover {
    background: rgba(40, 199, 111, 0.1) !important;
    border-color: rgba(40, 199, 111, 0.5) !important;
}

.btn-review {
    background: transparent !important;
    border: 1px solid rgba(0, 195, 255, 0.3) !important;
    color: #00c3ff !important;
    margin-right: 0.5rem;
}

.btn-review:hover {
    background: rgba(0, 195, 255, 0.1) !important;
    border-color: rgba(0, 195, 255, 0.5) !important;
}

/* Modal Özelleştirmeleri */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    color: #fff;
    position: relative;
    animation: modalPop 0.3s ease-out forwards;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.btn-close-modal:hover {
    opacity: 1;
}

.modal-body {
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.review-detail-row:last-child {
    border-bottom: none;
}

.review-label {
    opacity: 0.6;
    font-weight: 500;
}

.review-value {
    font-weight: 600;
    text-align: right;
    word-break: break-all;
    max-width: 60%;
}

