
:root {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


#app {
  width: 100%;
  min-height: auto;
}

.review-section {
  display: flex;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.video-container {
  flex: 0 0 55%;
  position: relative;
  background: linear-gradient(135deg, #798bff 0%, #005fdb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px;
}

.video-wrapper {
  position: relative;
  max-width: 640px;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.video-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.5px;
}

.reviews-container {
  flex: 0 0 45%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  padding: 42px;
}

.reviews-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.review-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-item {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.review-item.active {
  opacity: 1;
}

.review-location {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.star {
  color: #1fb3ad;
  font-size: 1.5rem;
}

.review-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 1px;
}

.slider-controls {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #d0d0d0;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.slider-btn:hover {
  border-color: #1fb3ad;
  color: #1fb3ad;
  transform: scale(1.05);
}

.slider-btn:active {
  transform: scale(0.95);
}

@media (max-width: 1024px) {
  .review-section {
    flex-direction: column;
  }

  .video-container,
  .reviews-container {
    flex: 1 1 auto;
  }

  .video-container {
    min-height: 50vh;
  }

  .reviews-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .video-title {
    font-size: 2rem;
  }

  .reviews-heading {
    font-size: 2rem;
  }

  .review-location {
    font-size: 1.5rem;
  }

  .reviews-container {
    padding: 30px 20px;
  }

  .video-container {
    padding: 20px;
  }
}
