/* ===== Tips Modal ===== */
.tips-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tips-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tips-modal {
    background: #FFFFFF;
    border-radius: 12px;
    width: 360px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.tips-overlay.active .tips-modal {
    transform: scale(1);
}

.tips-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: linear-gradient(270deg, rgba(108, 82, 255, 0) 0%, rgba(108, 82, 255, 0.1) 100%);
    border-bottom: 1px solid #F0F0F0;
}

.tips-title {
    font-size: 14px;
    font-weight: 600;
    color: #0E121B;
}

.tips-close {
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    font-size: 20px;
    color: #9CA3AF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tips-close:hover {
    color: #6B7280;
}

.tips-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 32px 24px;
    gap: 16px;
}

.tips-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #EEEBFF;
    color: #6C52FF;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
}

.tips-message {
    font-size: 16px;
    color: #0E121B;
    font-weight: 500;
}

.tips-footer {
    padding: 16px 24px 24px;
    display: flex;
    justify-content: center;
}

.tips-btn {
    padding: 10px 48px;
    background: #6C52FF;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: Inter, sans-serif;
}

.tips-btn:hover {
    background: #5A30F7;
}