@charset "UTF-8";
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner {
  background: linear-gradient(135deg, #1976d2, #2196f3);
  color: #fff;
  min-height: 400px;
  text-align: center;
  position: relative;
}
.banner .img_banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.banner .banner-content {
  position: absolute;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.banner .banner-content h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.banner .banner-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.5;
}

.section-title {
  margin-bottom: 40px;
  background-color: #f0f6f4;
  padding: 8px 0;
  border-bottom: 1px solid #a99c99;
}
.section-title .container {
  font-size: 20.83px;
  font-weight: 600;
  color: #000;
}

.featured-video {
  padding: 60px 0;
  background: #fff;
}
.featured-video h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}
.featured-video .featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .featured-video .featured-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.featured-video .video-player {
  position: relative;
}
.featured-video .video-player .video-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.featured-video .video-player .video-thumbnail:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.featured-video .video-player .video-thumbnail iframe {
  width: 100%;
  height: 325px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-video .video-player .video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease;
}
.featured-video .video-player .video-thumbnail .play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.featured-video .video-player .video-thumbnail:hover::after {
  opacity: 1;
}
.featured-video .video-player .video-thumbnail:hover img {
  transform: scale(1.05);
}
.featured-video .video-player .video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}
.featured-video .video-info h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}
.featured-video .video-info .video-category {
  color: #1976d2;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.featured-video .video-info .video-details {
  margin-bottom: 20px;
}
.featured-video .video-info .video-details p {
  color: #666;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
}
.featured-video .video-info .video-details p::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #1976d2;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.featured-video .video-info .video-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.featured-video .video-info .video-meta span {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}
.featured-video .video-info .video-meta span:before {
  content: "🕒";
  margin-right: 5px;
}
.featured-video .video-info .video-meta span.views:before {
  content: "👁️";
}
.featured-video .video-info .watch-btn {
  padding: 12px 24px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: linear-gradient(to bottom, #ffce62, #ffba4a);
  color: #fff;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 8px;
}
.featured-video .video-info .watch-btn:hover {
  background: rgb(204, 121.6, 0);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-categories {
  padding: 60px 0;
  background-color: #fff;
}
.video-categories .category-section {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 40px;
}
.video-categories .category-section .category-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 0%;
  margin-bottom: 30px;
}
.video-categories .category-section .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}
@media (max-width: 768px) {
  .video-categories .category-section .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .video-categories .category-section .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-5px);
}
.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}
.video-card:hover .video-thumbnail::after {
  opacity: 1;
}
.video-card:hover .video-thumbnail .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}
.video-card .video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.video-card .video-thumbnail img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.video-card .video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease;
}
.video-card .video-thumbnail .play-button svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.video-card .video-thumbnail::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  content: "";
  background: rgba(0, 0, 0, 0.2);
}
.video-card .video-content h4 {
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-top: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.load-more {
  padding: 40px 0 60px;
  text-align: center;
}
.load-more .load-more-btn {
  padding: 12px 24px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #1976d2;
  color: #fff;
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 8px;
  border: 2px solid #1976d2;
}
.load-more .load-more-btn:hover {
  background: #fff;
  color: #1976d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .banner {
    padding: 60px 0;
  }
  .banner .banner-content h1 {
    font-size: 2.5rem;
  }
  .banner .banner-content p {
    font-size: 1.1rem;
  }
  .featured-video {
    padding: 40px 0;
  }
  .featured-video h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .featured-video .video-info h3 {
    font-size: 1.5rem;
  }
  .featured-video .video-info .video-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .video-categories {
    padding: 40px 0;
  }
  .video-categories .category-section {
    padding: 25px;
    margin-bottom: 30px;
  }
  .video-categories .category-section .category-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  .video-card .video-thumbnail img {
    height: 160px;
  }
  .video-card .video-content {
    padding: 15px;
  }
  .video-card .video-content h4 {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .banner {
    padding: 40px 0;
  }
  .banner .banner-content h1 {
    font-size: 2rem;
  }
  .banner .banner-content p {
    font-size: 1rem;
  }
  .featured-video {
    padding: 30px 0;
  }
  .featured-video .featured-content {
    gap: 20px;
  }
  .featured-video .video-player .video-thumbnail img {
    height: 200px;
  }
  .featured-video .video-info h3 {
    font-size: 1.3rem;
  }
  .featured-video .video-info .watch-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }
  .video-categories {
    padding: 30px 0;
  }
  .video-categories .category-section {
    padding: 20px;
    margin-bottom: 25px;
  }
  .video-categories .category-section .category-title {
    font-size: 1.3rem;
  }
  .video-card .video-thumbnail img {
    height: 140px;
  }
  .video-card .video-thumbnail .play-button svg {
    width: 35px;
    height: 35px;
  }
  .load-more {
    padding: 30px 0 40px;
  }
  .load-more .load-more-btn {
    width: 100%;
    padding: 12px 30px;
  }
}
.video-card {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.video-grid .video-card:nth-child(1) {
  animation-delay: 0.1s;
}
.video-grid .video-card:nth-child(2) {
  animation-delay: 0.2s;
}
.video-grid .video-card:nth-child(3) {
  animation-delay: 0.3s;
}
.video-grid .video-card:nth-child(4) {
  animation-delay: 0.4s;
}
.video-grid .video-card:nth-child(5) {
  animation-delay: 0.5s;
}
.video-grid .video-card:nth-child(6) {
  animation-delay: 0.6s;
}

.play-button:hover svg circle {
  fill: #cc0000;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #1976d2;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0d47a1;
}

@media screen and (max-width: 768px) {
  .banner {
    min-height: 300px;
  }
  .banner .banner-content {
    padding: 0 20px;
    left: 0;
    right: 0;
    width: 100%;
  }
  .banner .banner-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .banner .banner-content p {
    font-size: 1rem;
  }
  .featured-video .video-info .video-details p {
    font-size: 14px;
  }
  .featured-video .video-info .video-meta {
    flex-wrap: wrap;
  }
  .featured-video .video-info .watch-btn {
    width: 100%;
    text-align: center;
  }
  .video-categories .category-section {
    padding: 0;
  }
  .video-categories .category-section .category-title {
    font-size: 20px;
    color: #1877f2;
    border-bottom: 2px #1877f2 solid;
  }
  .video-categories .category-section .video-grid {
    gap: 30px;
  }
  .video-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .video-card .video-content h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .banner {
    min-height: 250px;
  }
  .banner .banner-content h1 {
    font-size: 1.5rem;
  }
  .banner .banner-content p {
    font-size: 0.9rem;
  }
  .featured-video .video-player .video-thumbnail {
    border-radius: 8px;
  }
  .featured-video .video-player .video-thumbnail img {
    height: 200px;
  }
  .featured-video .video-info h3 {
    font-size: 1.2rem;
  }
  .featured-video .video-info .video-category {
    font-size: 12px;
  }
  .featured-video .video-info .video-details p {
    font-size: 13px;
  }
  .featured-video .video-info .video-details p::before {
    width: 3px;
    height: 3px;
  }
  .featured-video .video-info .video-meta span {
    font-size: 12px;
  }
  .featured-video .video-info .watch-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
  .video-categories .category-section .video-grid {
    gap: 20px;
  }
  .video-card .video-thumbnail img {
    height: 160px;
  }
  .video-card .video-thumbnail .play-button svg {
    width: 35px;
    height: 35px;
  }
  .video-card .video-thumbnail .video-duration {
    font-size: 11px;
    padding: 3px 6px;
    bottom: 8px;
    right: 8px;
  }
  .video-card .video-content h4 {
    font-size: 14px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 375px) {
  .container {
    padding: 0 10px;
  }
  .banner {
    min-height: 200px;
  }
  .banner .banner-content {
    padding: 0 15px;
  }
  .banner .banner-content h1 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .banner .banner-content p {
    font-size: 0.85rem;
  }
  .featured-video {
    padding: 20px 0;
  }
  .featured-video .video-player .video-thumbnail img {
    height: 180px;
  }
  .featured-video .video-info h3 {
    font-size: 1.1rem;
  }
  .video-categories {
    padding: 20px 0;
  }
  .video-categories .category-section .category-title {
    font-size: 1.1rem;
  }
  .video-card .video-thumbnail img {
    height: 140px;
  }
  .video-card .video-thumbnail .play-button svg {
    width: 30px;
    height: 30px;
  }
  .video-card .video-content h4 {
    font-size: 13px;
  }
}
