         /* Gelişmiş Görsel Detaylar - CSS */
         /* 1. Animasyonlu Durum Göstergeleri */
         .status-dot {
         width: 10px;
         height: 10px;
         border-radius: 50%;
         display: inline-block;
         margin-right: 8px;
         position: relative;
         }
         .status-active {
         background-color: #28a745;
         box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
         animation: pulse-green 2s infinite;
         }
         .status-inactive {
         background-color: #6c757d;
         box-shadow: 0 0 0 rgba(108, 117, 125, 0.4);
         }
         @keyframes pulse-green {
         0% {
         box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
         }
         70% {
         box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
         }
         100% {
         box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
         }
         }
         /* 2. Tablo Satırları için Gelişmiş Hover Efektleri */
         #ban-list-tbody tr {
         transition: all 0.3s ease;
         cursor: pointer;
         position: relative;
         }
         #ban-list-tbody tr:hover {
         transform: translateY(-2px);
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
         z-index: 1;
         background-color: rgba(13, 110, 253, 0.04);
         }
         #ban-list-tbody tr.highlight-row {
         background-color: rgba(13, 110, 253, 0.08);
         border-left: 4px solid #0d6efd;
         }
         /* 3. Kart Gölge ve Geçiş Efektleri */
         .card {
         transition: all 0.3s ease;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
         border: none;
         border-radius: 12px;
         overflow: hidden;
         }
         .card:hover {
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
         }
         .card-header {
         background: linear-gradient(135deg, var(--primary-color, #0d6efd), var(--secondary-color, #0dcaf0));
         color: white;
         font-weight: 500;
         padding: 15px 20px;
         border-bottom: none;
         }
         /* 4. Stat İkonları İçin Gelişmiş Stiller */
         .stat-icon {
         width: 40px;
         height: 40px;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 50%;
         transition: all 0.3s ease;
         }
         .stat-icon:hover {
         transform: scale(1.1);
         }
         /* 5. Admin ve Moderatör Rozetleri */
         .badge-admin, .badge-moderator {
         padding: 6px 10px;
         border-radius: 20px;
         font-weight: 500;
         transition: all 0.3s ease;
         }
         .badge-admin {
         background: linear-gradient(135deg, #d32f2f, #f44336);
         color: white;
         }
         .badge-moderator {
         background: linear-gradient(135deg, #1976d2, #2196f3);
         color: white;
         }
         .badge-admin:hover, .badge-moderator:hover {
         transform: translateY(-2px);
         box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
         }
         /* 6. Arama ve Filtre Alanları İçin Gelişmiş Stiller */
         .search-filter-section {
         background: linear-gradient(to right, #f8f9fa, #e9ecef);
         border-radius: 8px;
         margin-bottom: 15px;
         padding: 20px !important;
         }
         .input-group-text, .form-control, .form-select, .btn {
         border-radius: 8px;
         transition: all 0.3s ease;
         }
         .form-control:focus, .form-select:focus {
         box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
         border-color: #86b7fe;
         }
         /* 7. Modal İçin Gelişmiş Stiller */
         .modal-content {
         border: none;
         border-radius: 15px;
         overflow: hidden;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
         }
         .modal-header {
         border-bottom: none;
         padding: 20px;
         }
         .modal-body {
         padding: 25px;
         }
         .player-avatar {
         background-color: #f8f9fa;
         width: 80px;
         height: 80px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         margin: 0 auto 15px;
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
         transition: all 0.3s ease;
         }
         .player-avatar:hover {
         transform: scale(1.05);
         box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
         }
         /* 8. Butonlar İçin Gelişmiş Stiller */
         .btn {
         padding: 8px 16px;
         font-weight: 500;
         border-radius: 8px;
         transition: all 0.25s ease;
         position: relative;
         overflow: hidden;
         }
         .btn:hover {
         transform: translateY(-2px);
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
         }
         .btn:active {
         transform: translateY(0);
         }
         .btn-primary {
         background: linear-gradient(135deg, #0d6efd, #0b5ed7);
         border: none;
         }
         .btn-success {
         background: linear-gradient(135deg, #198754, #157347);
         border: none;
         }
         .btn-outline-secondary {
         border: 2px solid #6c757d;
         }
         .btn-outline-secondary:hover {
         background-color: #6c757d;
         color: white;
         }
         /* 9. Toast Bildirim Stili */
         .toast {
         border-radius: 8px;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
         background-color: white;
         border-left: 4px solid;
         opacity: 1;
         }
         .toast.bg-success {
         border-left-color: #198754;
         }
         .toast.bg-danger {
         border-left-color: #dc3545;
         }
         .toast.bg-primary {
         border-left-color: #0d6efd;
         }
         .toast.bg-warning {
         border-left-color: #ffc107;
         }
         .toast-body {
         padding: 15px;
         color: #212529;
         }
         /* 10. Tablo Başlık Stillemesi */
         .table-dark th {
         background: linear-gradient(135deg, #212529, #343a40);
         border: none;
         font-weight: 500;
         text-transform: uppercase;
         font-size: 0.85rem;
         letter-spacing: 0.5px;
         }
         /* 11. Grafik Stylelemeleri */
         .chart-container {
         padding: 15px;
         background-color: white;
         border-radius: 12px;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
         transition: all 0.3s ease;
         }
         .chart-container:hover {
         box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
         }
         /* 12. Loading Spinner Stillemesi */
         .spinner-border {
         width: 24px;
         height: 24px;
         border-width: 3px;
         }
         .refresh-btn {
         width: 36px;
         height: 36px;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 50%;
         cursor: pointer;
         transition: all 0.3s ease;
         background-color: rgba(13, 110, 253, 0.1);
         color: #0d6efd;
         }
         .refresh-btn:hover {
         background-color: rgba(13, 110, 253, 0.15);
         transform: rotate(15deg);
         }
         .refresh-btn.text-success {
         background-color: rgba(25, 135, 84, 0.1);
         color: #198754;
         }
         /* 13. Yorum Bölümü Stillemesi */
         .comment-section {
         max-height: 200px;
         overflow-y: auto;
         border-radius: 8px;
         padding-right: 5px;
         scrollbar-width: thin;
         scrollbar-color: #dee2e6 #f8f9fa;
         }
         .comment-section::-webkit-scrollbar {
         width: 6px;
         }
         .comment-section::-webkit-scrollbar-track {
         background: #f8f9fa;
         }
         .comment-section::-webkit-scrollbar-thumb {
         background-color: #dee2e6;
         border-radius: 10px;
         }
         /* Root CSS değişkenleri */
         :root {
         --primary-color: #0d6efd;
         --secondary-color: #0dcaf0;
         --success-color: #198754;
         --danger-color: #dc3545;
         --warning-color: #ffc107;
         --info-color: #0dcaf0;
         --light-color: #f8f9fa;
         --dark-color: #212529;
         }
         /* Avatar Görüntüleme Stilleri */
         .player-avatar {
         position: relative;
         width: 120px;
         height: 120px;
         border-radius: 50%;
         background-color: #f8f9fa;
         display: flex;
         align-items: center;
         justify-content: center;
         margin: 0 auto 15px;
         box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
         border: 3px solid #fff;
         overflow: hidden;
         transition: all 0.3s ease;
         }
         .player-avatar:hover {
         transform: scale(1.05);
         box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
         }
         .player-roblox-avatar {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: all 0.3s ease;
         }
         .player-roblox-avatar:hover {
         transform: scale(1.08);
         }
         .avatar-loading {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 100%;
         height: 100%;
         color: #6c757d;
         animation: pulse 1.5s infinite;
         }
         @keyframes pulse {
         0% {
         opacity: 0.6;
         }
         50% {
         opacity: 1;
         }
         100% {
         opacity: 0.6;
         }
         }
         .roblox-badge {
         position: absolute;
         bottom: -5px;
         right: -5px;
         background: linear-gradient(135deg, #FF4500, #FF6B35);
         color: white;
         border-radius: 12px;
         font-size: 0.7rem;
         padding: 3px 8px;
         font-weight: 600;
         border: 2px solid white;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
         display: flex;
         align-items: center;
         gap: 4px;
         transition: all 0.3s ease;
         }
         .roblox-badge:hover {
         transform: translateY(-2px);
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
         }
         .default-avatar {
         width: 100%;
         height: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         color: #adb5bd;
         transition: all 0.3s ease;
         }
         .no-roblox-badge {
         font-size: 0.8rem;
         color: #6c757d;
         }
         /* Roblox Buton Stili */
         .roblox-btn {
         background: linear-gradient(135deg, #FF4500, #FF6B35);
         border: none;
         color: white;
         font-weight: 500;
         transition: all 0.3s ease;
         margin-top: 10px;
         }
         .roblox-btn:hover {
         transform: translateY(-2px);
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
         background: linear-gradient(135deg, #FF6B35, #FF4500);
         color: white;
         }
         /* Roblox Modal Ek Öğeler */
         .roblox-info-title {
         font-size: 0.85rem;
         font-weight: 500;
         color: #6c757d;
         margin-bottom: 5px;
         }
         .roblox-details-section {
         background: linear-gradient(to right, rgba(255, 69, 0, 0.05), rgba(255, 107, 53, 0.05));
         border-radius: 8px;
         padding: 10px;
         margin-top: 15px;
         }
         .roblox-verification-indicator {
         font-size: 0.75rem;
         padding: 2px 8px;
         border-radius: 20px;
         background-color: #e9ecef;
         color: #495057;
         display: inline-flex;
         align-items: center;
         gap: 4px;
         }
         .roblox-verification-indicator.verified {
         background-color: #d4edda;
         color: #155724;
         }
         /* Animasyon Efektleri */
         @keyframes fadeIn {
         from { opacity: 0; transform: translateY(10px); }
         to { opacity: 1; transform: translateY(0); }
         }
         .roblox-info {
         animation: fadeIn 0.5s ease;
         }