.social-img {
    width: 50px;
    height: auto;
    margin: 5px;
    border-radius: 12px;
    transition: 0.3s;
}

.social-img:hover {
    transform: scale(1.1);
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(-45deg, #0f0f1a, #1a0033, #001f3f, #2b0033);
    background-size: 400% 400%;
    animation: neonBG 12s ease infinite;
    color: white;
}

@keyframes neonBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.3), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.3), transparent 40%);
    z-index: -1;
}