* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1a1a1a;
}

#ripple-container {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(0, 150, 255, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-animation 0.6s ease-out forwards;
}

@keyframes ripple-animation {
    to {
        transform: translate(-50%, -50%) scale(15);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(0, 150, 255, 0.5);  /* Softer color for hover */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-animation 2.5s ease-out forwards;
}

@keyframes ripple-animation {
    to {
        transform: translate(-50%, -50%) scale(8);
        opacity: 0;
    }
}
