.custom-modal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.custom-modal .modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #ffbb42 0%, #ffd278 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.custom-modal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.custom-modal .modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.custom-modal .modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.custom-modal .btn-close {
    color: white;
    opacity: 1;
}

.custom-modal .modal-body h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.custom-modal .modal-body h5 {
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.custom-modal .modal-body p {
    color: #666;
    line-height: 1.6;
}

.custom-modal .modal-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.custom-modal .modal-body ul li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.custom-modal .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-modal .btn-primary {
    background: #ffbb42;
    border-color: #ffbb42;
}

.custom-modal .btn-primary:hover {
    background: #ffa810;
    border-color: #ffa810;
}

.modal-backdrop.show {
    opacity: 0.7;
}

/* 动画效果 */
.custom-modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.custom-modal.show .modal-dialog {
    transform: scale(1);
}