/* Tech Fun Footer Styles */
.tech-fun-footer {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(94, 234, 212, 0.2);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.tech-fun-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  text-align: center;
}

.tech-fun-footer-text {
  color: #b5dbe3;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
}

/* Add body padding to account for fixed footer */
body.has-tech-fun-footer {
  padding-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-fun-footer-container {
    padding: 10px 16px;
  }
  
  .tech-fun-footer-text {
    font-size: 0.75rem;
  }
  
  body.has-tech-fun-footer {
    padding-bottom: 50px;
  }
}