/* General page reset and layout */
body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: sans-serif;
    line-height: 1.6;
}

/* Overlay for blur background */
/* Hide the overlay by default */
.blurOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Show the overlay when it's active */
.blurOverlay.active {
    display: flex;
}


/* Box for disclaimer */
.disclaimerBox {
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 25px;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Disclaimer content */
.disclaimerContent {
    text-align: center;
}

.disclaimerContent h2,
.disclaimerContent p,
.disclaimerContent a {
    color: #ffffff;
    margin: 12px 0;
    text-decoration: none;
}

.disclaimerContent a:hover {
    text-decoration: underline;
}

/* Agree button styling */
.agreeButton {
    background-color: #b80000;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.agreeButton:hover {
    background-color: #960000;
}
