body {
    font-family: 'Comic Sans MS', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #233196 0%, #08b5f4 100%);
    margin: 0;
    padding: 0;
}
header {
    background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
    color: #fff;
    padding: 40px 0 20px 0;
    text-align: center;
    position: relative;
}
header img.animated {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 20px;
}
header img.left {
    left: 30px;
}
header img.right {
    right: 30px;
}
main {
    max-width: 950px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
h2 {
    color: #000000;
    margin-top: 0;
}
.interests {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-around;
}
.interest {
    width: 220px;
    text-align: center;
    background: linear-gradient(135deg, #03fbbd 0%, #3702f6 100%);
    border-radius: 14px;
    padding: 18px 10px 22px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    position: relative;
    transition: transform 0.2s;
}
.interest:hover {
    transform: scale(1.05) rotate(-2deg);
}
.interest img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px #f6416c55;
}
.gif-deco {
    width: 70px;
    height: 70px;
    margin: 0 10px;
    vertical-align: middle;
}
footer {
    text-align: center;
    padding: 22px 0;
    background: linear-gradient(90deg, #1a27ae 0%, #9fa2fc 100%);
    color: #ffffff;
    font-weight: bold;
    margin-top: 40px;
    border-radius: 0 0 18px 18px;
}
