.terms-modal-content {
    max-width: 600px;
    max-height: none;
    overflow: visible;
}

.terms-content {
    margin: 1rem 0;
    line-height: 1.6;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.terms-content::-webkit-scrollbar {
    width: 6px;
}

.terms-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.terms-content::-webkit-scrollbar-thumb {
    background: #8b0000;
    border-radius: 3px;
}

.terms-content p {
    margin: 12px 0;
    color: #ccc;
    font-size: 14px;
    text-align: left;
}

.terms-accept-btn {
    background: #8b0000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-accept-btn:hover {
    background: #a00000;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.terms-accept-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .terms-modal-content {
        max-width: 90%;
    }
    
    .terms-content {
        max-height: 55vh;
    }
    
    .terms-content p {
        font-size: 13px;
    }
    
    .terms-accept-btn {
        padding: 15.6px 40px;
    }
}
