* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0d1117;
    color: #c9d1d9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background: radial-gradient(circle at center top, #161b22 0%, #0d1117 100%);
}

.container {
    max-width: 800px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    margin-bottom: 40px; 
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #8b949e; 
    text-transform: uppercase;
}

.logo span {
    color: #3b82f6; 
}

main h2 {
    font-size: 3.4rem; 
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

main p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 35px; 
    max-width: 600px;
    text-align: center;
}

.status-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px; 
    /* Precise visual anchor shift */
    transform: translateX(95px); 
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: #2ea043;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #2ea043;
    animation: pulsing 2s infinite;
}

@keyframes pulsing {
    0% { box-shadow: 0 0 0 0 rgba(46, 160, 67, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(46, 160, 67, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 160, 67, 0); }
}

.status-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #8b949e;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-box strong {
    color: #c9d1d9;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background-color: #2563eb; 
    color: #ffffff;
    text-decoration: none;
    padding: 16px 42px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px; 
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

footer {
    margin-top: 60px; 
    font-size: 0.85rem;
    color: #484f58;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    main h2 {
        font-size: 2.5rem; 
    }
    .status-box {
        transform: translateX(0); 
        justify-content: center;
    }
}