/* Base */
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
}

/* Primary Button (Black Minimal) */
.btn-primary {
    background: #111;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-1px);
}

/* Secondary Button (Outline) */
.btn-secondary {
    border: 1px solid #ddd;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    transition: 0.2s ease;
}

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}