/* Styles for the Terms of Service Modal */
.tos-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* Higher than any other content to ensure it overlays everything */
}

.tos-modal-content {
    background-color: #202020;
    border-radius: 8px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh; /* Limit height for scrollability */
    overflow-y: auto; /* Enable scrolling for long content */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: left;
}

.tos-modal-content h2 {
    color: var(--kz-orange);
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.tos-modal-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
}

.tos-modal-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #ccc;
}

.tos-modal-content ul li {
    margin-bottom: 8px;
}

.tos-accept-button {
    background-color: var(--kz-orange);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, filter 0.2s ease;
    display: block; /* Make button full width */
    width: 100%;
    margin-top: 30px;
}

.tos-accept-button:hover {
    filter: brightness(1.1);
}
