body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.container h1 {
    font-size: 2.5rem;
    animation: glow 2s infinite alternate;
}

.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 185, 84, 0.6) 30%, rgba(29, 185, 84, 0) 70%);
    animation: ripple 1.5s infinite ease-out;
}

img {
    border-radius: 10px;
    box-shadow: 0 0 15px #1db954;
}

@keyframes ripple {
    from {
        transform: scale(0.8);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #1db954, 0 0 20px #1db954;
    }
    to {
        text-shadow: 0 0 20px #ffffff, 0 0 40px #1db954;
    }
}
