:root {
    --glass-bg: rgba(25, 25, 25, 0.9);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    --primary-gradient: linear-gradient(135deg, #ffc107, #e6a800);
    --primary-gradient-hover: linear-gradient(135deg, #e6a800, #ffc107);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.text-primary {
    color: #ffc107 !important;
}

.text-muted {
    color: #888 !important;
}

.navbar-minimal {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-link {
    color: #aaa !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: #ffc107 !important;
}

.card-subtle {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.card-subtle:hover {
    border-color: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-minimal {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #ffc107;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-minimal:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
    transform: translateY(-1px);
}

.btn-minimal-primary {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(230, 168, 0, 0.9));
    border: none;
    color: #000;
    font-weight: 600;
}

.btn-minimal-primary:hover {
    background: linear-gradient(135deg, rgba(230, 168, 0, 0.9), rgba(255, 193, 7, 0.9));
    color: #000;
}

.form-control-minimal {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.form-control-minimal:focus {
    background: rgba(50, 50, 50, 0.8);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.1);
    color: #fff;
}

.badge-subtle {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #ffc107;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.table-minimal {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.table-minimal thead th {
    background: rgba(255, 193, 7, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffc107;
    font-weight: 600;
    padding: 1rem;
}

.table-minimal tbody td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-minimal tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mod-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.mod-item:hover {
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.mod-image {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mod-content {
    padding: 1.25rem;
}

.mod-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.mod-description {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tabs-minimal {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.25rem;
    margin-bottom: 2rem;
}

.nav-tabs-minimal {
    border: none;
    display: flex;
    gap: 0.25rem;
}

.nav-tabs-minimal .nav-link {
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #888;
    padding: 0.75rem 1.25rem;
}

.nav-tabs-minimal .nav-link:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.nav-tabs-minimal .nav-link.active {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.main-container {
    padding-top: 80px;
    min-height: calc(100vh - 160px);
}

.footer-minimal {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.rounded-lg {
    border-radius: 12px;
}

.rounded-md {
    border-radius: 8px;
}

.shadow-subtle {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(20, 20, 20, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 193, 7, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 193, 7, 0.5);
}

@media (max-width: 768px) {
    .navbar-minimal {
        padding: 0.5rem 0;
    }
    
    .main-container {
        padding-top: 70px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .mod-content {
        padding: 1rem;
    }
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    font-size: 3rem;
    color: #444;
    margin-bottom: 1rem;
}