/* Modern Dark Theme Overrides */
:root {
    --bs-body-bg: #121212;
    --bs-body-color: #e0e0e0;
    --card-bg: #1e1e1e;
    --accent-color: #bb86fc; 
    --accent-hover: #9965f4;
}

body {
    font-family: 'Questrial', sans-serif;
    background-color: var(--bs-body-bg);
}

/* Navbar */
.navbar {
    background-color: #1e1e1e !important;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #bb86fc, #03dac6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards - Square Borders */
.card {
    background-color: var(--card-bg);
    border: 1px solid #333;
    border-radius: 0; /* Removed rounding */
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-color: #555;
}

/* MVP Styling */
.mvp-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    border: 1px solid #444;
    overflow: hidden;
}

.mvp-label {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2px;
}

.mvp-score {
    color: var(--accent-color) !important;
    font-weight: bold;
}

/* Radial Gauge Text */
.gauge-svg circle {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tables */
.table {
    color: #e0e0e0;
}

.table-light {
    background-color: #2a2a2a;
    color: #fff;
    border-color: #333;
}

.table-light th {
    background-color: #252525;
    color: #aaa;
    border-bottom: 1px solid #444;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.table-hover tbody tr:hover {
    background-color: rgba(255,255,255,0.05);
    color: #fff;
}

/* Breadcrumbs */
.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #888;
}

/* Utility */
.text-muted {
    color: #888 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
