
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0a043c;
    color: #ff69b4;
    animation: fadeBody 1s ease-in;
}
header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0a043c, #180c49);
    animation: fadeInHeader 1s ease-in-out;
}
h1 {
    font-size: 3em;
    margin: 0;
    color: #ff69b4;
    text-shadow: 0 0 10px #ff69b4;
}
.button-container {
    text-align: center;
    margin-top: 30px;
}
.category-button {
    display: inline-block;
    background: #ff69b4;
    color: #0a043c;
    padding: 15px 25px;
    border-radius: 30px;
    margin: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}
.category-button:hover {
    background: #ff85c1;
    transform: scale(1.05);
}
@keyframes fadeInHeader {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeBody {
    from { opacity: 0; }
    to { opacity: 1; }
}
a { color: #ff69b4; text-decoration: none; }
