.gallery-title {
  text-align: center;
  color: #2563eb;
  margin: 2.5rem 0 1.5rem 0;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 600;
  animation: popIn 0.8s cubic-bezier(.5,1.8,.5,1);
}


body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #ece2be 0%, #e6d3a3 60%, #b3e0ff 100%);
  margin: 0;
  min-height: 100vh;
  color: #1e293b;
  animation: fadeInBg 1.2s ease;
}

.container {
  max-width: 900px;
  margin: 2.5rem auto;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(135,206,250,0.10);
  padding: 2rem 1.5rem;
  animation: slideInUp 1.1s cubic-bezier(.5,1.8,.5,1);
}


  color: #047857;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1.5px;
  animation: popIn 0.8s cubic-bezier(.5,1.8,.5,1);
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

video {
  width: 20%;
  min-width: 120px;
  max-width: 200px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: linear-gradient(120deg, #e0f7fa 60%, #f7fafc 100%);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInSection 0.9s cubic-bezier(.5,1.8,.5,1);
  margin: 0.5rem;
}

video {
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: linear-gradient(120deg, #e0f7fa 60%, #f7fafc 100%);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInSection 0.9s cubic-bezier(.5,1.8,.5,1);
}
video:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(135,206,250,0.18);
}


.box {
  background: linear-gradient(90deg, #e0f7fa 60%, #f1f5f9 100%);
  border: 1px solid #b3e0ff;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(135,206,250,0.08);
  font-size: 1.08rem;
  animation: fadeInSection 0.9s cubic-bezier(.5,1.8,.5,1);
}


.highlight {
  background: #d1fae5;
  color: #047857;
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 8px;
  padding: 0.4em 1em;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,128,0,0.08);
  animation: popIn 0.7s cubic-bezier(.5,1.8,.5,1);
}


@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInUp {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

@media (max-width: 700px) {
  .container {
    padding: 0.7rem;
  }
  .video-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  video {
    width: 90vw;
    min-width: unset;
    max-width: 100vw;
  }
}
