      body {
            background-image: url('https://i.pinimg.com/1200x/39/23/69/39236976fa6704d3a5ca71d657e1cd44.jpg'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

.gray-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.712);
    z-index: -2;
}

.lottie-container {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: -1;
}

.lottie-animation {
    position: absolute;
    top: -80px;
    width: 100%;
    height: 100%;
}

.buttons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row-1 {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.row-2 {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.row-2 a {
    width: 70%;
    max-width: 300px;
}

.buttons-container a {
    display: block;
    text-align: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

.buttons-container a:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.gojo {
    position: absolute;
    top: 0;
    right: 0;
    height: 300px;
    animation: floating 3s ease-in-out infinite;
    z-index: 1;
}

.geto-gojo {
    position: absolute;
    top: 50px;
    left: 0;
    height: 250px;
    animation: floating 3s ease-in-out infinite;
    z-index: 1;
}

footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    text-align: center;
    font-size: 1rem;
    z-index: 10;
}