:root {
    --bg-main: #020617;
    --bg-secondary: #0f172a;
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #ec4899;
    --accent: #06b6d4;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    --card-bg: rgba(30, 41, 59, 0.5);
    --card-border: rgba(148, 163, 184, 0.1);
    
    --gradient-hero: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    
    --nav-height: 80px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.glow-1 { top: -100px; left: -100px; background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%); }
.glow-2 { top: 40%; right: -200px; background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%); }
.glow-3 { bottom: -100px; left: 20%; background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%); }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.8);
    border-bottom: 1px solid var(--card-border);
    height: 70px;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.25rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.lang-option {
    min-width: 42px;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    border: none;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lang-option:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.12);
}

.lang-option.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.4);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeDown 0.8s ease-out;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out 0.1s backwards;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease-out 0.3s backwards;
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    margin-bottom: 8rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--card-border);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.features {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.feature-card {
    background: var(--gradient-glass);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

.commands {
    padding: 6rem 0;
    max-width: var(--container-width);
    margin: 0 auto;
}

.command-category {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.category-header:hover {
    background: rgba(255, 255, 255, 0.04);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.command-category.active .category-content {
    max-height: 1000px;
}

.command-item {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--card-border);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}

.cmd-name {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
}

.partners {
    padding: 6rem 0 0;
    max-width: var(--container-width);
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
}

.partner-card {
    background: var(--gradient-glass);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.35s ease;
    text-decoration: none;
    min-width: 0;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.55);
}

.partner-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.15);
    overflow: hidden;
    flex: 0 0 56px;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partner-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.partner-title {
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 0.35rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.partner-main {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-author {
    margin-top: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.partner-more {
    margin-top: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        align-items: flex-start;
    }
}

.footer {
    border-top: 1px solid var(--card-border);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    background: rgba(2, 6, 23, 0.5);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-actions {
        gap: 0.65rem;
    }

    .lang-switcher {
        padding: 0.2rem;
        border: 1px solid rgba(148, 163, 184, 0.2);
        background: rgba(15, 23, 42, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .lang-option {
        min-width: 36px;
        padding: 0.35rem 0.5rem;
        font-size: 0.75rem;
        color: var(--text-secondary);
        text-decoration: none;
        border: none;
    }

    .lang-option.active {
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    }
    
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--card-border);
    }

    .nav-links.active {
        display: flex;
        animation: fadeDown 0.3s ease-out;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .command-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Status page ─────────────────────────────────────────────────────── */

.status-hero {
    padding-top: 140px;
    padding-bottom: 3rem;
    text-align: center;
}

.status-hero-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.status-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.status-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.overall-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.overall-status.status-ok {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.overall-status.status-down {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.overall-status.status-degraded {
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #eab308;
}

.overall-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.status-last-updated {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.refresh-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.refresh-link:hover { text-decoration: underline; }

.status-grid-section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem 5rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.status-card {
    background: var(--gradient-glass);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.status-card.card-online {
    border-color: rgba(34, 197, 94, 0.2);
}

.status-card.card-offline {
    border-color: rgba(239, 68, 68, 0.25);
}

.status-card:hover {
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.4);
}

.status-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.status-card-title {
    flex: 1;
}

.status-card-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}

.status-host {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.badge-online {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.badge-offline {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.badge-online .badge-dot {
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.status-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.metric-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 1px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.text-online  { color: #22c55e; }
.text-warn    { color: #eab308; }
.text-offline { color: #ef4444; }

.shards-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.shards-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.shards-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shard-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border-left: 3px solid var(--card-border);
}

.shard-item.shard-online  { border-left-color: #22c55e; }
.shard-item.shard-offline { border-left-color: #ef4444; }

.shard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.shard-id {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
}

.shard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.shard-online  .shard-dot { background: #22c55e; animation: pulse-dot 2s infinite; }
.shard-offline .shard-dot { background: #ef4444; }

.shard-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.shard-stats span { display: flex; align-items: center; gap: 0.3rem; }
.shard-stats i    { color: var(--primary); font-size: 0.7rem; }

.status-offline-msg {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: #f87171;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.status-footer-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid var(--card-border);
    padding-top: 1rem;
    margin-top: auto;
}

.status-footer-info strong { color: var(--text-primary); }
.status-footer-info i      { color: var(--primary); }
.status-footer-info.text-offline i { color: #ef4444; }

.poll-info {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-left: 0.8rem;
    opacity: 0.7;
}

/* Offline service bloc */
.service-offline-bloc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: 16px;
}

.offline-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ef4444;
    opacity: 0.7;
}

.offline-x {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offline-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f87171;
}

.offline-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 280px;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.35);
    border-radius: 10px;
    color: #7289da;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.25rem;
}

.btn-support:hover {
    background: rgba(88, 101, 242, 0.28);
    transform: translateY(-1px);
}

.discord-indicator-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}

.discord-status-desc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    background: rgba(0,0,0,.18);
    border-radius: 12px;
}

.discord-incident-bloc {
    background: rgba(0,0,0,.2);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.discord-incident-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.discord-incident-label i { color: var(--primary); }

.discord-incident-title {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.discord-incident-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.discord-incident-none {
    font-size: 0.85rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }

    .status-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

