body {
    background: linear-gradient(135deg, #2d003d 0%, #6a1b9a 100%);
    color: #f3eaff;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}

header, section {
    background: rgba(120, 60, 180, 0.25);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 700px;
    box-shadow: 0 4px 24px rgba(120,60,180,0.10);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

header {
    animation-delay: 0.6s;
}

section#about {
    animation-delay: 0.8s;
}

section#projects {
    animation-delay: 1s;
}

h1, h2, h3 {
    color: #e0b3ff;
}

a {
    color: #c77dff;
}

a:hover {
    color: #fff;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}