/* ===================================
   Fanli OEM Partnership Homepage
   Footer CSS Styles
   =================================== */

/* ===== FOOTER STYLES ===== */

/* Footer Container */
.fanli-footer {
  background: #0f172a;
  padding: 40px 0;
  border-top: 1px solid #1e293b;
  position: relative;
}

.fanli-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #2772fa 50%, transparent 100%);
}

/* Footer Content */
.fanli-footer__content {
  text-align: center;
}

.fanli-footer__copyright {
  font-size: 16px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

/* Footer copyright text styling */

/* Responsive Design */
@media (max-width: 768px) {
  .fanli-footer {
    padding: 32px 0;
  }
  
  .fanli-footer__copyright {
    font-size: 14px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .fanli-footer {
    padding: 24px 0;
  }
  
  .fanli-footer__copyright {
    font-size: 13px;
    line-height: 1.5;
  }
}
