body, html {
    height: 100%;
    margin: 0;
    background: url('Ridgeline.png') no-repeat center center fixed; 
    background-size: cover;
    overflow: hidden; 
    position: relative; 

}

body::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; 
    z-index: 1; 
    box-shadow: inset 0 0 50px rgba(0, 0, 255, 0);
    animation: pulse 9s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: inset 0 0 25px rgba(0, 0, 255, 0);
    }
    50% {
        box-shadow: inset 0 0 25px rgba(100, 100, 255, 0.5), 
                    inset 0 0 50px rgba(100, 100, 255, 0.5);
    }
}

@keyframes float-up-fade-in {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.glass-box {
    height: 50%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: rgba(0, 0, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    animation: float-up-fade-in 2s ease-out forwards;
}

.text-content h1 {
    font-size: 2em;
    color: white;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 1em;
}

.text-content p {
    font-size: 1.5em;
    color: white;
    text-align: center;
}


.underline {
    text-decoration: underline;
}

#report-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 69, 58, 0.8);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease-in-out;
}

#report-btn:hover {
    background-color: rgba(255, 69, 58, 1);
}


#return-btn {
    background-color: rgba(0, 123, 255, 0.8); 
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#return-btn:hover {
    background-color: rgba(0, 123, 255, 1); 
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
}
