:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --bg-color: #f8fafc;
    --text-color: #1e293b;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

.card {
    border: none;
    border-radius: 1rem;
    background: white;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.terminal-block {
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    overflow-x: auto;
}

.cmd {
    color: #4ec9b0;
}

.arg {
    color: #ce9178;
}

footer {
    margin-top: auto;
    padding: 2rem 0;
    background-color: white;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.badge-custom {
    background-color: #e0e7ff;
    color: #4338ca;
    padding: 0.5em 0.8em;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8rem;
}
