body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    margin: 0;
    padding: 0;
    animation: fadeIn 1s ease-in-out;
}

header {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 58, 138, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 1s ease-in-out;
}

section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-in-out;
}

section:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.linkedin-button {
    background: linear-gradient(90deg, #0077B5, #005582);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 6px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 1.5s infinite;
}

.linkedin-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 119, 181, 0.6);
}

footer {
    background: rgba(30, 58, 138, 0.9);
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    animation: fadeIn 2s ease-in-out;
}

/* Animaties */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}