:root {
    /* Minimalist Black and White */
    --bg-color: #000000;
    --fg-color: #ffffff;
    --accent-gray: #a0a0a0;
    --accent-light-gray: #e6e6e6;
    --electric-cyan: #00E5FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--fg-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.glass-panel {
    /* Keeping it transparent, mostly acting as a container */
    padding: 4rem 5rem;
}

.glow-text {
    font-size: 5rem;
    font-weight: 700;
    color: var(--fg-color);
    margin-bottom: 0.5rem;
    letter-spacing: -2.5px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-gray);
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.divider {
    display: none; /* No divider in minimalist aesthetic */
}

.status {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    color: var(--accent-light-gray);
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05); /* very subtle pill shape */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--electric-cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5);
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 229, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .glass-panel {
        padding: 2.5rem 1.5rem;
    }
    .glow-text {
        font-size: 3.5rem;
        letter-spacing: -1.5px;
    }
    .subtitle {
        font-size: 1.1rem;
        letter-spacing: -0.2px;
    }
}
