.video-section {
  width: 100vw;
  height: 100vh;
  background: var(--shadow-color);
  color: var(--text-color-oposite);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-header {
  width: 100%;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.video-title {
  font-size: 48px;
  font-weight: 300;
  color: var(--text-color-oposite);
}

.video-content {
  max-width: 90%;
  height: 80vh;
  display: flex;
}

.video-left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.video-player {
  width: 100%;
  max-width: 600px;
  height: 60vh;
  position: relative;
  background: var(--shadow-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-player:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-dark);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--shadow-medium);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.video-player:hover .video-overlay {
  background: var(--shadow-light);
}

.video-play-button {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  color: var(--text-color-oposite);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  transition: all 0.3s ease;
}

.video-play-button:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-subtitle {
  font-size: 24px;
  line-height: 1.4;
  color: var(--secondary-color);
  opacity: 0.9;
}

.video-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.video-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
  max-width: 400px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-catalog {
  background: var(--primary-color);
  color: var(--text-color-oposite);
  border: none;
}

.btn-catalog:hover {
  background: var(--secondary-color);
}

.btn-offer {
  background: transparent;
  color: var(--text-color-oposite);
  border: 2px solid var(--text-color-oposite);
}

.btn-offer:hover {
  background: var(--tertiary-color);
  color: var(--text-color-oposite);
  border-color: var(--tertiary-color);
}

/* Модальное окно */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  height: 70vh;
  background: var(--shadow-color);
}

.modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--text-color-oposite);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--secondary-color);
}

.video-container {
  display: flex;
  flex-direction: column;
  width: 1480px;
  max-width: 100vw;
  height: 100%;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .video-container {
    gap: 30px;
  }

  .video-content {
    flex-direction: column;
    height: 80vh;
  }

  .video-left,
  .video-right {
    width: 100%;
    height: 50%;
  }

  .video-left {
    height: 40%;
  }

  .video-right {
    height: 60%;
    gap: 20px;
  }

  .video-player {
    height: 30vh;
  }

  .video-title {
    font-size: 36px;
  }

  .video-subtitle {
    font-size: 20px;
  }

  .video-btn {
    height: 60px;
    font-size: 16px;
  }

  .modal-content {
    width: 95vw;
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .video-container {
    gap: 25px;
  }

  .video-header {
    height: 15vh;
  }

  .video-content {
    height: 85vh;
    align-items: center;
  }

  .video-title {
    font-size: 28px;
  }

  .video-subtitle {
    font-size: 18px;
  }

  .video-player {
    height: 25vh;
  }

  .video-play-button {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .video-btn {
    height: 55px;
    font-size: 15px;
  }

  .modal-content {
    width: 98vw;
    height: 50vh;
  }

  .modal-close {
    top: -40px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}
