body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(0,0,0,0.4);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 10 4px 24px rgba(0,0,0,0.2);
    max-width: 350px;
    width: 100%;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-bottom: 20px;
}

h1 {
    margin: 0 0 10px 0;
    font-size: 2em;
}

.tagline {
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links a {
    text-decoration: none;
    color: #fff;
    background: #764ba2;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.links a:hover {
    background: #667eea;
    transform: translateY(-2px) scale(1.05);
}
.links a {
    /* previous styles remain */
    text-decoration: none;
    color: #fff;
    background: #764ba2;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
    /* animation styles */
    animation: glow 2s linear infinite;
    box-shadow: 0 0 0px #fff;
    opacity: 0.85;
}

/* Keyframes for the glowing effect */
@keyframes glow {
    0% {
        box-shadow: 0 0 0px #fff;
        opacity: 0.85;
    }
    10% {
        box-shadow: 0 0 10px 4px #fff;
        opacity: 1;
    }
    20% {
        box-shadow: 0 0 0px #fff;
        opacity: 0.85;
    }
    100% {
        box-shadow: 0 0 0px #fff;
        opacity: 0.85;
    }
}

/* Alternate animation delays for each link for moving glow effect */
.links a:nth-child(1) { animation-delay: 0s; }
.links a:nth-child(2) { animation-delay: 0.5s; }
.links a:nth-child(3) { animation-delay: 1s; }
.links a:nth-child(4) { animation-delay: 1.5s; }

body::before,
body::after {
    content: "⚽️";
    position: fixed;
    font-size: 2.5em;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    animation: moveFootball1 12s linear infinite;
}

body::after {
    left: 80vw;
    top: 20vh;
    font-size: 3em;
    opacity: 0.13;
    animation: moveFootball2 16s linear infinite;
}

body::before {
    left: 10vw;
    top: 60vh;
}

@keyframes moveFootball1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(60vw, -70vh) rotate(720deg);
    }
}

@keyframes moveFootball2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-60vw, 70vh) rotate(-720deg);
    }
}.container {
    position: relative;
    z-index: 1;
}