body {
  font-family: poppins, sans-serif;
}
#hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.74)),url("../img/hero.webp") center/cover no-repeat;
  padding: 280px 270px;
  color: rgb(255, 255, 255);
}

.hero h1 {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.scroll-indicator{
  text-align:center;
  margin-top: 170px;
}
.scroll-indicator p{
  margin-top:22px;
  font-size: 14px;
  letter-spacing: 2px;
}

.arrows span{
  display:block;
  width:20px;
  height:20px;
  border-bottom:3px solid white;
  border-right:3px solid white;
  transform:rotate(45deg);
  margin:5px auto;
  animation:scrollDown 2s infinite;
}

.arrows span:nth-child(2){
  animation-delay:0.2s;
}

.arrows span:nth-child(3){
  animation-delay:0.4s;
}

@keyframes scrollDown{
  0%{
    opacity:0;
    transform:rotate(45deg) translate(-10px,-10px);
  }
  50%{
    opacity:1;
  }
  100%{
    opacity:0;
    transform:rotate(45deg) translate(10px,10px);
  }
}

p{
  margin-top:10px;
  font-size:14px;
  letter-spacing:2px;
}

/* About */
#About {
  background: #000000;
  padding: 70px 0 150px;
}

#About h2 {
  color: white;
}
#About p {
  color: rgb(182, 182, 182);
}
.FlexAbout {
  margin: 0 auto;
  display: flex;
  line-height: 1.25;
  width: 70%;
}
.TextAbout {
  justify-content: center;
  align-items: center;
  display: flex;
  line-height: 28px;
}

/* award */
#Award {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.74)),
    url("../img/hero.webp") center/cover no-repeat;
  padding: 70px 0;
}
#Award h2 {
  color: white;
  text-align: center;
  padding-bottom: 20px;
}
.FlexAward {
  margin: 0 auto;
  display: flex;
  line-height: 1.25;
  width: 70%;
}
.PictAward {
  width: 50%;
}

.TextAward {
  width: 50%;
  color: white;
}
.WrapTextAward {
  color: rgb(182, 182, 182);
}
ul {
  list-style: none;
}
li {
  line-height: 25px;
}
.RedText {
  color: #ff0000;
}

/* whyUS */
.WhyUs {
  padding: 70px 0;
  background: #000;
}
.slider {
  width: 100%;
  height: 580px;
  max-width: 1200px;
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  display: block;
}

.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #333;
}
.GamPreview {
  padding: 20px 0;
  margin: 0 auto;
  width: 60%;
  justify-content: center;
  gap: 10px;
  display: flex;
}
.GamPreview img {
  width: 230px;
}

/* Partners */
#partners {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.616), rgba(0, 0, 0, 0.616)),
    url(../img/hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  padding: 30px 0 60px;
}
#partners h2 {
  color: white;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.boxPartner {
  width: 99%;
  text-align: center;
  /* background: purple; */
  margin: 0 auto 10px;
}
.containerPartners {
  margin: 0 auto;
  width: 80%;
}
.boxPartner img {
  margin: 0 8px;
  width: 100px;
}
.SlidePartners {
  display: none;
}

/* video */
.VideoSec {
  padding: 50px 0;
  background: rgb(0, 0, 0);
}
.containerVideo {
  margin: 0 auto;
  text-align: center;
  max-width: 1200px;
  width: 100%;
}
.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  /* flex-wrap: wrap; */
}

.video-card {
  /* min-width: 280px;
  max-width: 350px; */
  /* background: #f8f9fa; */
  width: 33%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
}

.video-card.playing {
  transform: scale(1.02);
  /* box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4); */
  border: 2px solid #ff0000;
}

.video-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
}

/* .video-wrapper {
  padding: 20px 20px 10px 20px;
} */

.video-player {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
  background: #000;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
}

.video-info {
  display: none;
  padding: 10px 20px;
  text-align: center;
  color: #555;
  font-size: 0px;
}

.video-info i {
  color: #667eea;
  margin-right: 5px;
}

.button-container {
  padding: 0 20px 20px 20px;
  text-align: center;
}

.play-button {
  background: linear-gradient(135deg, #b90606 0%, #8a0202 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.play-button:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6); */
}

.play-button:active {
  transform: translateY(0);
}

.play-button.pause {
  background: linear-gradient(135deg, #f56565 0%, #c53030 100%);
  /* box-shadow: 0 4px 15px rgba(245, 101, 101, 0.4); */
}

.play-button i {
  font-size: 1.2em;
}

.instruction {
  margin-top: 40px;
  padding: 20px;
  background: #f0f4ff;
  border-radius: 12px;
  text-align: center;
  color: #4a5568;
  border: 2px dashed #667eea;
}

.instruction p {
  margin: 5px 0;
}

.instruction .highlight {
  color: #667eea;
  font-weight: 600;
  font-size: 1.1em;
}

.control-panel {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.control-button {
  background: #4a5568;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-button:hover {
  background: #2d3748;
  transform: translateY(-2px);
}

.control-button.reset {
  background: #48bb78;
}

.control-button.reset:hover {
  background: #38a169;
}

/* Status badge */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  margin-top: 5px;
}

.status-badge.playing {
  /* background: #c6f6d5; */
  color: #22543d;
}

.status-badge.paused {
  /* background: #fed7d7; */
  color: #742a2a;
}

@media (max-width: 600px) {
  /* #partners {
  } */
  .containerPartners {
    display: none;
  }
  .SlidePartners {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    /* background: red; */
  }
  .SlidePartners img {
    padding-right: 10px;
    width: 92%;
  }
  .boxPartner {
    display: flex;
    justify-content: center;
  }
  .boxPartner img {
    width: 12%;
    height: 20px;
  }
  .play-button {
    width: 100%;
    font-size: 0.5rem;
    padding: 5px;
  }
}
