.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, 
    rgba(0, 243, 255, 0.05) 0%, 
    rgba(157, 0, 255, 0.05) 100%);
}

.videos-section {
  padding: 60px 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.video-card {
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 243, 255, 0.3);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(0, 0, 0, 0.3) 50%, 
    rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 4rem;
  color: var(--neon-blue);
  text-shadow: 0 0 20px var(--neon-blue);
  margin-bottom: 20px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
  transform: scale(1);
}

.video-description {
  text-align: center;
  padding: 0 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.video-card:hover .video-description {
  transform: translateY(0);
}

.video-description h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.video-description p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: var(--bg-dark);
  border: 2px solid var(--neon-blue);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 243, 255, 0.3);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--neon-pink);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: var(--neon-blue);
  transform: rotate(90deg);
  box-shadow: 0 0 20px var(--neon-blue);
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
