/* Additional styles for footer and other dark mode elements */

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-brand span {
  color: #dddddd;
  background: linear-gradient(45deg, #dddddd, #999999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 45, 0.8);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.footer-social a:hover {
  transform: translateY(-5px);
  background: rgba(150, 150, 150, 0.2);
  border-color: #cccccc;
  color: #dddddd;
  box-shadow: 0 5px 15px rgba(150, 150, 150, 0.3);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .post-card {
    transform: none !important;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-avatar {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .auth-card {
    padding: 25px 15px;
  }
}

/* Dark mode optimized media embeds */
.post-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(30, 30, 45, 0.1) 0%,
    rgba(30, 30, 45, 0) 50%,
    rgba(30, 30, 45, 0.2) 100%);
  pointer-events: none;
}

/* Improved tab content for dark mode */
.tab-content {
  background: rgba(30, 30, 45, 0.3);
  border-radius: 0 12px 12px 12px;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: -1px;
}
