/* ============================================
   SERVERGLADIATOR - CLEAN DARK THEME (FIXED)
   ============================================ */

/* ===== BASIS ===== */
:root {
    --bg-main: #0f1523;
    --bg-card: #1a2234;
    --bg-hover: #232d42;
    --border: #2a3548;
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --green: #22c55e;
    --orange: #f59e0b;
    --white: #ffffff;
    --text: #e5e7eb;
    --muted: #94a3b8;
}

html, body {
    background: var(--bg-main) !important;
    color: var(--text) !important;
}

/* ============================================
   STORE LAYOUT / CONTENT
   ============================================ */

main, .main-content, #main-content, .container-fluid {
    background: var(--bg-main) !important;
}

h1 {
    color: var(--white) !important;
}

h1 + p, .lead {
    color: var(--muted) !important;
}

/* ============================================
   SIDEBAR (FIXED & READABLE)
   ============================================ */

.sidebar,
.col-md-3 {
    background: #111827 !important;
}

/* Sidebar Cards */
.sidebar .card {
    background: #111827 !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
}

/* Sidebar Header */
.sidebar .card-header {
    background: #1f2937 !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid var(--border) !important;
}

/* Sidebar Items */
.sidebar .list-group-item {
    background: transparent !important;
    color: var(--text) !important;
    font-size: 0.9rem !important;
    padding: 10px 16px !important;
    border: none !important;
}

.sidebar .list-group-item:hover {
    background: #1f2937 !important;
    color: var(--white) !important;
}

.sidebar .list-group-item.active {
    background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
}

/* ============================================
   WÄHRUNGSBOX (CLEAN)
   ============================================ */

.sidebar .card:has(select) {
    border: 1px solid var(--border) !important;
    box-shadow: none !important;
}

.sidebar .card:has(select) .card-header {
    background: #1f2937 !important;
    color: var(--accent-light) !important;
}

select {
    background: #0f172a !important;
    border: 1px solid var(--border) !important;
    color: var(--white) !important;
    padding: 10px !important;
    border-radius: 8px !important;
    width: 100% !important;
}

/* ============================================
   PRODUKT / PANELS (NUR CONTENT!)
   ============================================ */

.col-md-9 .panel,
.main-content .panel {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.panel-heading {
    background: var(--bg-hover) !important;
    color: var(--white) !important;
    padding: 15px !important;
    font-weight: 600 !important;
}

.panel-body {
    background: var(--bg-card) !important;
    color: var(--text) !important;
    padding: 20px !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.panel-body ul {
    list-style: none !important;
    padding: 0 !important;
}

.panel-body li {
    padding: 6px 0 !important;
    color: var(--text) !important;
}

.panel-footer {
    background: var(--bg-card) !important;
    border-top: 1px solid var(--border) !important;
}

/* Preise */
.price,
span[class*="price"] {
    color: var(--accent-light) !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-success,
.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
    border: none !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.btn-success:hover,
.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4) !important;
}

.btn-default {
    background: var(--bg-hover) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
}

/* ============================================
   NAV CLEANUP
   ============================================ */

nav a[href*="announcements"],
nav a[href*="knowledgebase"],
nav a[href*="serverstatus"] {
    display: none !important;
}

.breadcrumb {
    display: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .sidebar {
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .sidebar .list-group-item {
        font-size: 0.95rem !important;
    }
}
