:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --accent: #00ff88;
    --border: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--bg-secondary)
    );

    color: var(--text-primary);
    font-family: "Segoe UI", sans-serif;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 700px;
    padding: 40px;
}

/* Enhanced Gear Section */
.gear-container {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gear-container::before {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(0, 255, 136, 0.25),
        transparent 70%
    );

    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
}

.gear {
    position: relative;
    z-index: 1;

    font-size: 110px;
    color: var(--accent);

    animation: spin 8s linear infinite;

    filter:
        drop-shadow(0 0 10px rgba(0, 255, 136, 0.6))
        drop-shadow(0 0 25px rgba(0, 255, 136, 0.4));
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 30px;

    color: var(--text-secondary);

    backdrop-filter: blur(8px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);

    box-shadow:
        0 0 5px var(--accent),
        0 0 15px var(--accent);
}

/* Rotating Gear */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Pulsing Glow */
@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .container {
        padding: 30px;
    }

    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1rem;
    }

    .gear {
        font-size: 80px;
    }

    .gear-container::before {
        width: 140px;
        height: 140px;
    }
}