/* ── Reset & Base ──────────────────────────────────── */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

    background: #0a0015;

    color: #ffffff;

    min-height: 100vh;

    overflow-x: hidden;

}



/* ── WebGL Background Canvas ──────────────────────── */

#bg-canvas {

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    z-index: 0;

}



/* ── Main Content ─────────────────────────────────── */

.container {

    position: relative;

    z-index: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 100vh;

    padding: 40px 20px;

}



/* ── Header ───────────────────────────────────────── */

.header {

    text-align: center;

    margin-bottom: 50px;

}



.header .domain {

    font-size: 1rem;

    font-weight: 400;

    letter-spacing: 4px;

    text-transform: lowercase;

    color: rgba(255, 255, 255, 0.5);

    margin-bottom: 8px;

}



.header h1 {

    font-size: 2.5rem;

    font-weight: 300;

    letter-spacing: 8px;

    text-transform: uppercase;

    background: linear-gradient(135deg, #c084fc, #818cf8, #67e8f9);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



/* ── Section Headers ──────────────────────────────── */

.section-title {

    font-size: 0.8rem;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.35);

    margin: 30px 0 20px 0;

    width: 100%;

    max-width: 700px;

    text-align: center;

}



/* ── Service Grid ─────────────────────────────────── */

.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

    gap: 16px;

    width: 100%;

    max-width: 700px;

}



/* ── Service Card (Glassmorphism) ─────────────────── */

.service-card {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 24px 16px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    text-decoration: none;

    color: #ffffff;

    transition: all 0.3s ease;

    cursor: pointer;

}



.service-card:hover {

    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.2);

    transform: translateY(-4px);

    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);

}



/* ── Status Dot ───────────────────────────────────── */

.status-dot {

    position: absolute;

    top: 12px;

    right: 12px;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #555;

    transition: background 0.3s ease;

}



.status-dot.up {

    background: #4ade80;

    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);

}



.status-dot.down {

    background: #f87171;

    box-shadow: 0 0 8px rgba(248, 113, 113, 0.6);

}



/* ── Service Icon ─────────────────────────────────── */

.service-icon {

    max-width: 48px;

    max-height: 40px;

    width: auto;

    height: auto;

    margin-bottom: 12px;

    border-radius: 8px;

    object-fit: contain;

}



/* ── Service Name ─────────────────────────────────── */

.service-name {

    font-size: 0.85rem;

    font-weight: 500;

    letter-spacing: 1px;

    text-align: center;

}



/* ── Responsive ───────────────────────────────────── */

@media (max-width: 500px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

    }



    .header h1 {

        font-size: 1.8rem;

        letter-spacing: 4px;

    }

}
