/* Generelles Dark Theme */
body {
    background: #121212;
    color: #e5e5e5;
    font-family: 'Inter', sans-serif;
}

/* Hero Card */
.hero-card {
    background: #1e1e1e;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0 25px rgba(0,0,0,0.35);
    border: 1px solid #2a2a2a;
}

/* Buttons */
.btn-primary {
    background: #3b82f6;
    border: none;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-outline-secondary {
    color: #e5e5e5;
    border-color: #444;
}

.btn-outline-secondary:hover {
    background: #2a2a2a;
    border-color: #555;
}

/* Feature Cards */
.feature-card {
    background: #1a1a1a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #2a2a2a;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
}

.feature-card h5 {
    color: #fff;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .hero-card {
        padding: 2rem;
    }
}