/* ===== GLOBAL ===== */
:root {
    --primary: #7c3aed;
    --accent: #22c55e;
    --bg-blur: blur(14px);
}

/* Background */
body {
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #e5e7eb;
}

/* ===== CARDS ===== */
.service,
.card {
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: var(--bg-blur);
    -webkit-backdrop-filter: var(--bg-blur);
    border-radius: 16px !important;
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.25s ease;
}

/* Hover effect */
.service:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
}

/* ===== GROUP TITLES ===== */
h2 {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #c7d2fe;
}

/* ===== ICONS ===== */
.service-icon {
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.4));
}

/* ===== STATUS DOTS ===== */
.status {
    box-shadow: 0 0 8px currentColor;
}

/* ===== TEXT ===== */
.service-title {
    font-weight: 600;
    font-size: 15px;
}

.service-description {
    font-size: 12px;
    opacity: 0.7;
}

/* ===== WIDGETS ===== */
.widget {
    background: rgba(2, 6, 23, 0.6) !important;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

/* ===== SEARCH BAR ===== */
.search {
    background: rgba(15, 23, 42, 0.6) !important;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.6);
    border-radius: 10px;
}