/* Enhanced Styles */
body.ui-style-10 {
  font-size: 16px;
}

.container {
  transition: all 0.3s ease;
}

section {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.video-card a:hover {
  text-decoration: underline;
}

nav a.active {
  color: #0066cc;
  font-weight: 600;
}

@media (max-width: 480px) {
  nav a {
    font-size: 11px;
    padding: 5px 4px;
  }
}
