/* 1. Global Polish */
body {
    -webkit-font-smoothing: antialiased; /* Crisp text */
}

/* 2. The "Glass" Service Cards */
.service-card {
    /* Semi-transparent Slate-900 background */
    background: rgba(15, 23, 42, 0.6) !important; 
    /* The Blur Effect */
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    /* Subtle Border */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    /* Tailwind rounded-xl */
    border-radius: 16px !important;
    /* Smooth Transition */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* Subtle Shadow */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* 3. Hover Effects (Lift and Glow) */
.service-card:hover {
    transform: translateY(-4px) !important;
    background: rgba(30, 41, 59, 0.8) !important; /* Lighter slate on hover */
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2) !important;
}

/* 4. Category Headers (Media, Network, etc.) */
.group-title {
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(148, 163, 184, 1) !important; /* Tailwind slate-400 */
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    opacity: 0.8;
}

/* 5. The Top Widget Bar (Resources) */
/* Make it look like a floating pill */
.infowidget-row {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px !important;
    padding: 8px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem !important;
    display: inline-flex; /* Centers it nicely */
}

/* 6. Clean up the Header Text */
/* Hides the "System" label backup if YAML didn't catch it */
.infowidget-label {
    display: none !important;
}

/* 7. Footer Cleanup */
footer {
    opacity: 0.3;
    transition: opacity 0.2s;
}
footer:hover {
    opacity: 1;
}
