@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* Новая палитра Neon Night City на базе логотипа */
    --bg-dark: #07070a; /* Глубокий темный фон */
    --bg-panel: rgba(15, 16, 22, 0.65); /* Стеклянная панель */
    
    --primary-neon: #00F0FF; /* Электрический циановый */
    --secondary-neon: #FF007F; /* Неоновый розовый/пурпурный */
    --brand-gradient: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
    
    --text-main: #ffffff;
    --text-dim: #a0a0b0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --success: #00ff88;
    --error: #ff3b3b;
    --warning: #ffd700;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; 
}

/* Красивые темные скроллбары для всего сайта */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-neon); }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    height: 100dvh; 
    overflow: hidden;
    /* Космический фон с легкими неоновыми засветами */
    background: radial-gradient(circle at top right, rgba(255, 0, 127, 0.15) 0%, #07070a 40%, rgba(0, 240, 255, 0.1) 100%);
}

h1, h2, h3, h4, h5, .logo {
    font-family: 'Montserrat', sans-serif;
}

/* ==========================================
   === 1. LAYOUT & NAVIGATION ===
   ========================================== */
.app-container { 
    display: flex; 
    height: 100dvh; 
    width: 100vw;
}

.sidebar { 
    width: 240px; 
    background: var(--bg-panel); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex; 
    flex-direction: column; 
    padding: 20px 20px 90px 20px; 
    border-right: 1px solid var(--glass-border); 
    z-index: 9999; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; 
    overflow-x: hidden;
}

.main-content { 
    flex: 1; 
    overflow-y: auto; 
    position: relative; 
    scroll-behavior: smooth; 
}

.top-bar {
    height: 70px;
    background: rgba(7, 7, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 5000;
}

.logo { 
    font-size: 24px; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    flex-shrink: 0;
}

.nav-links { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
}

.nav-links li { 
    margin-bottom: 8px; 
    cursor: pointer; 
    color: var(--text-dim); 
    display: flex; 
    align-items: center; 
    font-size: 14px; 
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    transition: 0.2s; 
    position: relative; 
}

.nav-links li:hover, .nav-links li.active { 
    color: #fff; 
    background: rgba(255,255,255,0.05);
}

.nav-links li.active {
    border-left: 3px solid var(--primary-neon);
    border-radius: 0 8px 8px 0;
}

.nav-links li i { 
    margin-right: 15px; 
    width: 20px; 
    text-align: center; 
    font-size: 18px; 
}

.nav-buttons button, .mobile-menu-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.nav-buttons button:hover, .mobile-menu-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary-neon);
}

.mobile-menu-btn {
    display: none; 
}

/* ==========================================
   === 2. BUTTONS & CONTROLS ===
   ========================================== */
.btn-neon { 
    background: var(--brand-gradient); 
    border: none; 
    color: #000; 
    padding: 10px 24px; 
    border-radius: 30px; 
    cursor: pointer; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; 
    font-size: 14px;
    text-transform: uppercase; 
    letter-spacing: 1px;
    transition: 0.3s; 
    display: inline-block;
    text-align: center;
    white-space: nowrap; 
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.btn-neon:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
    color: #000;
}

.btn-neon-small {
    background: var(--primary-neon); 
    border: none; 
    color: #000; 
    padding: 8px 16px; 
    border-radius: 20px; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 12px;
    transition: 0.3s; 
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 240, 255, 0.2);
}

.btn-neon-small:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.5);
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-dim);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
    white-space: nowrap; 
}

.btn-text:hover { color: #fff; }
.btn-text.active { background: rgba(255,255,255,0.1); color: var(--primary-neon); }

/* ==========================================
   === 3. MODALS, OVERLAYS & FORMS ===
   ========================================== */
#auth-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    background: rgba(0,0,0,0.85); 
    z-index: 100000; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.auth-box, .modal-content { 
    background: rgba(15, 16, 22, 0.85); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px; 
    border-radius: 20px; 
    width: 90%; 
    max-width: 400px; 
    border: 1px solid var(--glass-border); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(0, 240, 255, 0.1) inset; 
    max-height: 90vh; 
    overflow-y: auto; 
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #fff;
    position: relative;
}

.auth-box h2, .modal-header h2 { 
    margin-top: 0; 
    margin-bottom: 20px; 
    font-size: 24px; 
    color: #fff;
    font-weight: 800;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.close-btn {
    font-size: 26px;
    cursor: pointer;
    color: var(--text-dim);
    transition: 0.2s;
    line-height: 1;
}
.close-btn:hover {
    color: var(--secondary-neon);
    transform: scale(1.1);
}

.auth-input, .input-dark { 
    width: 100%; 
    padding: 14px 16px; 
    background: rgba(0,0,0,0.4); 
    border: 1px solid var(--glass-border); 
    border-radius: 10px; 
    color: #fff; 
    outline: none; 
    margin-bottom: 16px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.auth-input:focus, .input-dark:focus {
    background: rgba(0,0,0,0.6);
    border-color: var(--primary-neon);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

@keyframes zoomIn { 
    from { transform: scale(0.95); opacity: 0; } 
    to { transform: scale(1); opacity: 1; } 
}

/* Окно Комментариев */
#comments-modal {
    max-width: 500px !important;
    height: 85vh;
    padding: 24px;
}
#comments-list {
    flex: 1 1 auto; 
    overflow-y: auto; 
    background: rgba(0,0,0,0.3); 
    border-radius: 12px; 
    padding: 16px; 
    margin-bottom: 16px; 
    border: 1px solid var(--glass-border);
    text-align: left;
}
#new-comment-text { flex: 0 0 auto; margin-bottom: 12px; }
#comments-modal .btn-neon, #comments-modal .btn-text { flex: 0 0 auto; width: 100%; margin-bottom: 10px; }

/* Переключатель (Toggle) */
input:checked + .slider { background-color: var(--primary-neon) !important; }
input:checked + .slider > span { transform: translateX(18px); }

/* ==========================================
   === 4. CARDS, GRID & TRENDING ===
   ========================================== */
.section-title { font-size: 24px; font-weight: 800; margin-bottom: 24px; color: #fff;}

/* Блок Trending Now */
#trending-list { 
    display: flex; 
    gap: 20px; 
    overflow-x: auto; 
    padding-bottom: 20px; 
}

.trending-item { 
    flex: 0 0 auto;
    width: 140px; 
    background: rgba(255,255,255,0.03); 
    padding: 12px; 
    border-radius: 16px; 
    border: 1px solid var(--glass-border);
    cursor: pointer; 
    text-align: center; 
    transition: 0.3s; 
    backdrop-filter: blur(10px);
}
.trending-item:hover { 
    background: rgba(255,255,255,0.08); 
    transform: translateY(-5px); 
    border-color: var(--primary-neon);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.trending-item img { 
    width: 100%; 
    aspect-ratio: 1; 
    object-fit: cover; 
    border-radius: 10px; 
    margin-bottom: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.trending-item span { 
    display: block;
    font-size: 13px; 
    font-weight: 600; 
    color: #fff; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Обычная сетка треков */
.track-card { 
    background: rgba(255,255,255,0.02); 
    border-radius: 16px; 
    overflow: hidden; 
    transition: 0.3s; 
    padding: 16px;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.track-card:hover { 
    background: rgba(255,255,255,0.06); 
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.track-img-container { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 1; 
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.track-img { width: 100%; height: 100%; object-fit: cover; }
.track-overlay { 
    position: absolute; top:0; left:0; width:100%; height:100%; 
    background: rgba(0,0,0,0.4); display: flex; justify-content: center; align-items: center; 
    opacity: 0; transition: 0.3s; 
}
.track-card:hover .track-overlay { opacity: 1; }

.btn-play-circle { 
    width: 50px; height: 50px; border-radius: 50%; 
    background: var(--brand-gradient); border: none; font-size: 18px; color: #000; 
    cursor: pointer; box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4); 
    display: flex; justify-content: center; align-items: center; 
    transform: translateY(15px); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.track-card:hover .btn-play-circle { transform: translateY(0); }
.btn-play-circle:hover { transform: scale(1.1) translateY(0); box-shadow: 0 6px 20px rgba(255, 0, 127, 0.6); color: #fff; }

.track-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff;}
.track-artist { font-size: 13px; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ==========================================
   === 5. PLAYER BAR & FULLSCREEN ===
   ========================================== */
.player-bar { 
    position: fixed; 
    bottom: 0; 
    left: 240px; 
    width: calc(100% - 240px); 
    height: 90px; 
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--glass-border); 
    padding: 0 24px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    z-index: 9000; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.player-info { display: flex; align-items: center; width: 30%; overflow: hidden; cursor: pointer;}
.player-info img { width: 56px; height: 56px; border-radius: 8px; margin-right: 16px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.player-text-info { display: flex; flex-direction: column; overflow: hidden; }

.player-controls-container { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 600px; }
.player-controls { display: flex; align-items: center; gap: 24px; margin-bottom: 8px;}

.ctrl-btn { background: none; border: none; color: var(--text-dim); font-size: 18px; cursor: pointer; transition: 0.2s; }
.ctrl-btn:hover { color: #fff; }
.ctrl-btn.main { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #fff; color: #000; border-radius: 50%; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.ctrl-btn.main:hover { transform: scale(1.1); background: var(--primary-neon); box-shadow: 0 0 15px rgba(0, 240, 255, 0.5); }

.waveform-wrapper { display: flex; align-items: center; width: 100%; gap: 12px; font-size: 12px; color: var(--text-dim); font-weight: 500;}
#waveform { position: relative; width: 100%; height: 30px; }

.player-tools { width: 30%; display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.tool-icon { color: var(--text-dim); cursor: pointer; transition: 0.2s; font-size: 18px; }
.tool-icon:hover { color: var(--primary-neon); text-shadow: 0 0 10px rgba(0, 240, 255, 0.4); }

#volume-slider { -webkit-appearance: none; width: 100px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; outline: none; cursor: pointer; }
#volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: #fff; cursor: pointer; transition: 0.2s; }
#volume-slider:hover::-webkit-slider-thumb { background: var(--primary-neon); box-shadow: 0 0 8px rgba(0, 240, 255, 0.6); }

/* --- ПОЛНОЭКРАННЫЙ ПЛЕЕР (ДЛЯ ВСЕХ УСТРОЙСТВ) --- */
.player-expand-handler { display: none; }

.player-bar.expanded { 
    height: 100dvh !important; 
    width: 100vw !important; 
    left: 0 !important; 
    top: 0 !important; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, rgba(255,0,127,0.1) 0%, #07070a 90%);
    z-index: 99999; 
}
.player-bar.expanded .player-expand-handler { 
    display: flex; position: absolute; top: 30px; right: 40px; 
    font-size: 32px; color: #fff; cursor: pointer; opacity: 0.7; transition: 0.3s;
}
.player-bar.expanded .player-expand-handler:hover { opacity: 1; transform: scale(1.1); color: var(--primary-neon); }
.player-bar.expanded .player-expand-handler i { transform: rotate(180deg); }

.player-bar.expanded .player-info { width: 100%; max-width: 500px; flex-direction: column; text-align: center; margin-bottom: 40px; cursor: default; }
.player-bar.expanded .player-info img { width: 35vh; height: 35vh; min-width: 250px; min-height: 250px; margin: 0 auto 25px auto; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.8); }
.player-bar.expanded #player-title { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.player-bar.expanded #player-artist { font-size: 18px; color: var(--primary-neon); font-weight: 500;}

.player-bar.expanded .player-controls-container { width: 100%; max-width: 600px; }
.player-bar.expanded .waveform-wrapper { margin-bottom: 40px; }
.player-bar.expanded .player-controls { gap: 40px; }
.player-bar.expanded .ctrl-btn { font-size: 26px; }
.player-bar.expanded .ctrl-btn.main { width: 70px; height: 70px; font-size: 28px; }
.player-bar.expanded .player-tools { width: 100%; max-width: 600px; justify-content: center; gap: 40px; margin-top: 40px; }

/* ==========================================
   === 6. UTILS & NOTIFICATIONS ===
   ========================================== */
.notif-badge {
    position: absolute; top: -5px; right: -5px; background: var(--secondary-neon); color: #fff;
    font-size: 10px; font-weight: bold; min-width: 18px; height: 18px;
    display: flex; justify-content: center; align-items: center; border-radius: 50%; display: none;
    box-shadow: 0 0 10px var(--secondary-neon);
}

#toast-container { 
    position: fixed; top: 20px; right: 20px; z-index: 1000000; 
    display: flex; flex-direction: column; gap: 10px; 
    pointer-events: none;
}
.toast { 
    pointer-events: auto; 
    min-width: 250px; background: rgba(20, 20, 25, 0.9); backdrop-filter: blur(10px); color: #fff; padding: 16px 20px; border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: space-between; 
    animation: slideIn 0.3s ease-out forwards; font-size: 14px; border-left: 4px solid var(--primary-neon);
    font-weight: 500;
}
.toast.error { border-left-color: var(--secondary-neon); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

#global-loader { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.85); z-index: 1000000; display: none; 
    justify-content: center; align-items: center; backdrop-filter: blur(5px);
}

/* ==========================================
   === 7. RESPONSIVE (MOBILE) ===
   ========================================== */
#mobile-menu-overlay { 
    display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
    background: rgba(0,0,0,0.7); z-index: 9998; backdrop-filter: blur(4px); cursor: pointer;
}

@media (max-width: 768px) {
    .sidebar { position: fixed; top: 0; left: -100%; width: 280px; height: 100dvh; z-index: 10000; padding-bottom: 100px; background: rgba(10, 10, 15, 0.95);}
    .sidebar.open { left: 0; box-shadow: 5px 0 30px rgba(0,0,0,0.9); }
    body:has(#sidebar.open) #mobile-menu-overlay { display: block; } 
    
    .main-content { padding-top: 80px; padding-bottom: 100px; }
    
    .top-bar { 
        position: fixed; top: 0; left: 0; width: 100%; height: 65px; 
        padding: 0 15px; z-index: 8000; background: rgba(5, 5, 8, 0.9);
    }
    
    .mobile-menu-btn { display: inline-flex; }
    
    #nav-login-btn .btn-neon, #nav-login-btn .btn-text {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .player-bar:not(.expanded) { 
        left: 0; width: 100%; bottom: 0; height: 70px; padding: 0 15px; z-index: 9000; cursor: pointer;
        background: rgba(15, 15, 20, 0.95); border-top: 1px solid rgba(255,255,255,0.05);
    }
    .player-bar:not(.expanded) .player-info { width: calc(100% - 60px); }
    .player-bar:not(.expanded) .player-info img { width: 45px; height: 45px; border-radius: 6px; }
    
    .player-bar:not(.expanded) .player-controls-container {
        position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: auto; flex-direction: row;
    }
    .player-bar:not(.expanded) .waveform-wrapper,
    .player-bar:not(.expanded) #btn-prev,
    .player-bar:not(.expanded) #btn-next,
    .player-bar:not(.expanded) .player-tools { display: none; }
    
    .player-bar:not(.expanded) .ctrl-btn.main {
        width: 40px; height: 40px; font-size: 16px; background: transparent; color: #fff; box-shadow: none;
    }

    .player-bar.expanded { padding: 30px 20px; }
    .player-bar.expanded .player-expand-handler { top: 20px; right: 20px; }
    .player-bar.expanded .player-info img { width: 75vw; height: 75vw; min-width: 0; min-height: 0;}
    .player-bar.expanded .player-controls-container { display: flex; position: relative; width: 100%; transform: none; right: auto; top: auto; margin-bottom: 20px;}
    .player-bar.expanded .waveform-wrapper { display: flex; margin-bottom: 20px; }
    .player-bar.expanded #btn-prev, .player-bar.expanded #btn-next { display: inline-block; font-size: 24px;}
    .player-bar.expanded .player-tools { display: flex; width: 100%; justify-content: center; gap: 30px; margin-top: 10px; }
    .player-bar.expanded .player-tools .tool-icon { font-size: 24px; padding: 10px; }
    
    .player-bar.expanded .player-tools .fa-volume-up,
    .player-bar.expanded .player-tools #volume-slider { display: none; }
}

/* ==========================================
   === 8. NOTIFICATIONS & UTILS ===
   ========================================== */
.notif-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 3px solid transparent;
    transition: 0.2s;
    cursor: pointer;
    text-align: left;
    border: 1px solid var(--glass-border);
}

.notif-item:hover { background: rgba(255, 255, 255, 0.08); }
.notif-item.unread { 
    border-left-color: var(--primary-neon); 
    background: rgba(0, 240, 255, 0.05); 
}

.notif-text { font-size: 13px; color: #ddd; line-height: 1.5; word-break: break-word; }
.notif-date { font-size: 11px; color: #888; margin-top: 8px; display: block; }

/* Кнопка с контуром */
.btn-outline-small {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-small:hover {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 240, 255, 0.1);
}

/* Таблица Sales & Analytics */
#detailed-stats-container {
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow-x: auto;
}
#detailed-stats-list table { width: 100%; border-collapse: collapse; font-size: 13px; }
#detailed-stats-list th {
    padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--glass-border);
    color: var(--primary-neon); font-weight: 700; background: rgba(0, 240, 255, 0.05); white-space: nowrap;
}
#detailed-stats-list td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); color: #ddd; white-space: nowrap; }
#detailed-stats-list tr:hover td { background: rgba(255, 255, 255, 0.02); }