/* Specifické styly jen pro main.php */

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    background-color: #1b1b1b;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px rgba(255, 76, 76, 0.1);
    transition: transform 0.2s;
}

section:hover {
    transform: translateY(-4px);
}

h2 {
    color: #ff4c4c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    color: #e0e0e0;
}

.btn-primary {
    display: inline-block;
    background-color: #ff4c4c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #e03a3a;
}
