.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.video-card {
  background: var(--bg-secondary);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--bg-dark);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-content {
  padding: 2rem;
}

.video-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.video-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.video-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.video-tag:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.video-artist {
  font-style: italic;
  color: var(--text-tertiary);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.youtube-cta-card {
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.youtube-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="2" fill="rgba(245,158,11,0.1)"/></svg>');
  animation: dots-move 20s linear infinite;
}

@keyframes dots-move {
  from { background-position: 0 0; }
  to { background-position: 80px 80px; }
}

.youtube-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.youtube-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
  animation: pulse-youtube 3s ease-in-out infinite;
}

@keyframes pulse-youtube {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
  }
  50% { 
    transform: scale(1.1);
    box-shadow: 0 15px 60px rgba(255, 0, 0, 0.6);
  }
}

.youtube-cta-content h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.youtube-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
}

.btn-youtube:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 0, 0, 0.6);
}

.btn-youtube i {
  font-size: 1.3rem;
}