:root {
    --primary: #00f2ff;
    --secondary: #7000ff;
    --bg: #0a0a0c;
    --text: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0c 100%);
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    z-index: 1;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.logo span {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.status-badge .online {
    color: var(--primary);
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary);
}

.card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Subtle background animation */
body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        transparent,
        transparent 50px,
        rgba(0, 242, 255, 0.02) 50px,
        rgba(0, 242, 255, 0.02) 51px
    );
    transform: translate(-50%, -50%) rotate(45deg);
    pointer-events: none;
}
