/* Footer with Tubes Animation */
.tubes-footer {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: #0f0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Footer Canvas Background */
#footer-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
}

.footer-content p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 200, 50, 0.9);
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .tubes-footer {
    min-height: 200px;
  }

  .footer-content p {
    font-size: 0.9rem;
  }
}
