:root {
    --primary: #ff3c00; /* Fastly Red */
    --secondary: #1a1a1a;
    --accent: #00d2ff;
    --bg: #0a0a0a;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 3rem;
}

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

.card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card p {
    color: #888;
    line-height: 1.6;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--primary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #44ff44;
    margin-top: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #44ff44;
    border-radius: 50%;
    box-shadow: 0 0 10px #44ff44;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    color: #444;
    font-size: 0.9rem;
}
