body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #000;
    color: #e5e7eb;
    overflow-x: hidden;
}

/* 🎬 VIDEO BACKGROUND */
#bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* 🌑 GLOBAL OVERLAY */
.global-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: -1;
}

/* 🔥 HERO */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 20px;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 50px;
    color: #95d600;
}

.hero-icon {
    width: 600px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* 📞 CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 5px 10px;
    max-width: 1200px;
    margin: auto;
}

.contact-card {
    background: rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(149, 214, 0, 0.3);
}

/* 🧰 SERVICES */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    justify-content: center;
}

.card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #95d600;
    padding: 30px;
    border: 1px solid #111;
    width: 250px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* 📊 STATUS */
.status {
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 20px;
}

.status h2 {
    text-align: center;
    margin-bottom: 20px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(00px, 1fr));
    gap: 16px;
}

.status-card {
    font-size: 1rem;
    padding: 16px 18px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: transform 0.2s ease;
}

.status-card:hover {
    transform: translateY(-3px);
}

/* TEXT */
.service {
    font-weight: 500;
}

.state {
    font-size: 1rem;
    opacity: 0.8;
}

/* 🟢 ONLINE */
.status-card.online {
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.15);
}

.status-card.online::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
    opacity: 0.6;
    animation: pulseGreen 1.6s infinite ease-in-out;
    pointer-events: none;
}

/* 🟠 RUNNING */
.status-card.running {
    border: 1px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.2);
}

.status-card.running::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.6);
    opacity: 0.6;
    animation: pulseOrange 1.6s infinite ease-in-out;
    pointer-events: none;
}

/* ⚡ ANIMATIONS */
@keyframes pulseGreen {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.01); }
}

@keyframes pulseOrange {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}