/* Additional styles for enhanced UI */

body.ui-style-14 {
  --primary-color: #e74c3c;
  --secondary-color: #3498db;
  --accent-color: #f39c12;
}

.page-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.video-info, .video-oneline, .video-summary, .video-review {
  margin: 25px 0;
  padding: 20px;
  background: #f9f9f9;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.video-info h2, .video-oneline h2, .video-summary h2, .video-review h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.video-info p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.6;
}

.video-oneline p, .video-summary p, .video-review p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.rank-badge {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

.date-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.review {
  margin-top: 10px;
  padding: 10px;
  background: #fff;
  border-left: 3px solid var(--secondary-color);
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 24px;
  }

  .section {
    padding: 20px 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
