main {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero {
    margin-bottom: 3rem;
}

.hero-code {
    margin-top: 2rem;
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.hero-code pre {
    background-color: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    grid-column: 1 / -1;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: #888888;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.card {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
    text-align: left;
}

.card:hover {
    border-color: #555555;
    transform: translateY(-2px);
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.card p {
    color: #888888;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card a {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background-color: #222222;
    border-radius: 6px;
    border: 1px solid #333333;
    transition: all 0.2s ease;
}

.card a:hover {
    background-color: #333333;
    border-color: #555555;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0070f3;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #00ff88;
    border-radius: 50%;
}

pre {
    background-color: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 1rem;
    overflow-x: auto;
    margin: 0;
}

code {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ffffff;
}

/* Syntax highlighting */
.keyword {
    color: #ff79c6;
}

.string {
    color: #f1fa8c;
}

.function {
    color: #50fa7b;
}

.class {
    color: #8be9fd;
}

.module {
    color: #8be9fd;
}

.variable {
    color: #f8f8f2;
}

.decorator {
    color: #ffb86c;
}

@media (max-width: 768px) {
    main {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-code {
        grid-template-columns: 1fr;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
}

