body.overflow {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer {
    background: white;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    max-height: 85%;
    overflow: auto;
}

.disclaimer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.disclaimer-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.disclaimer-text {
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.disclaimer-text ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.disclaimer-text li {
    margin-bottom: 1rem;
}

.disclaimer-button {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: #b8860b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.disclaimer-button:hover {
    background-color: #996d00;
}
