/* UI Style: ui-style-3 | Layout: E */

:root {
  --primary-color: #0066cc;
  --secondary-color: #ff6600;
  --bg-color: #f5f5f5;
  --text-color: #333;
  --border-color: #e0e0e0;
}

body.ui-style-3 {
  font-size: 16px;
}

.container {
  animation: fadeIn 0.5s ease-in;
}

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

.video-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  border-color: var(--primary-color);
}

.video-title a {
  color: var(--text-color);
  transition: color 0.2s;
}

.video-title a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .section {
    padding: 1rem;
  }
  .container {
    margin: 1rem auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
