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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

header {
    text-align: center;
    padding: 3rem 0 2rem;
}

header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7, #ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: #888;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #12121a;
    border: 1px solid #1e1e2e;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    margin: 2rem auto;
    width: fit-content;
    font-size: 0.9rem;
    color: #6ee7b7;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.cta {
    text-align: center;
    margin: 2rem 0;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #7b2ff7, #ff2d95);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.hero {
    text-align: center;
    padding: 3rem 0;
}

.hero h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero > p {
    color: #999;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background: #12121a;
    border: 1px solid #1e1e2e;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.2s;
}

.feature:hover {
    border-color: #7b2ff7;
}

.feature .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.feature h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.4;
}

footer {
    text-align: center;
    padding: 3rem 0 1rem;
    color: #444;
    font-size: 0.85rem;
}
