html,
body {
  height: 100%;
  margin: 0 auto;
  background: #000000;
  color: #ffffff;
}

/* Regular */
@font-face {
  font-family: 'NotoSansThaiCondensed';
  src: url('../fonts/NotoSansThai-Condensed.woff2') format('woff2'),
    url('../fonts/NotoSansThai-Condensed.woff') format('woff'),
    url('../fonts/NotoSansThai-Condensed.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* SemiBold */
@font-face {
  font-family: 'NotoSansThaiCondensed';
  src: url('../fonts/NotoSansThai-CondensedSemiBold.woff2') format('woff2'),
    url('../fonts/NotoSansThai-CondensedSemiBold.woff') format('woff'),
    url('../fonts/NotoSansThai-CondensedSemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'NotoSansThaiCondensed', 'Noto Sans Thai', sans-serif;
  width: 100%;
  position: relative;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #C5C5C5;
}

.text-link {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 8px;
}

.text-link:hover {
  color: #AF0000;
}

.btn:hover {
  border: none;
  filter: brightness(1.2);
}

.btn:active {
  border: none;
}

a:hover {}

.hr-w20 {
  margin: 0;
  color: #ffffff56;
}

.gap-05 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.warper-big-title {
  display: flex;
  flex-direction: column;
}

.warper-big-title h2 {
  font-family: "tannakone-condensed", sans-serif;
  font-size: 50px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.warper-big-title p {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: .5rem;
}

.text-one-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-two-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-three-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.col-warper-main {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 130px;
}

.section-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
}

.section-title-left {
  width: 100%;
  display: flex;
  gap: 15px;
  overflow: hidden;
}

.section-title2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.img-glow {
  animation: redPulse 2.5s ease-in-out infinite;
  transform-origin: center;
}

.show-mobile {
  display: none;
}

.btn-shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 45%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.75),
      transparent);
  transform: rotate(25deg);
  animation: shineMove 2.5s infinite;
}



@keyframes shineMove {
  0% {
    left: -75%;
  }

  45%,
  100% {
    left: 130%;
  }
}

@keyframes redPulse {
  0% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 0px rgba(255, 0, 0, 0)) drop-shadow(0 0 5px rgba(255, 0, 0, 0.181));
  }

  50% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 12px rgba(255, 0, 0, 0.216)) drop-shadow(0 0 8px rgba(255, 0, 0, 0.326));
  }

  100% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 0px rgba(255, 0, 0, 0)) drop-shadow(0 0 5px rgba(255, 0, 0, 0.181));
  }
}

@media (max-width: 992px) {

  .gap-30 {
    gap: 20px;
  }

  .section-title2 img {
    height: 100px;
  }

  .warper-big-title h2 {
    font-size: 40px;
  }

  .warper-big-title p {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  p {
    font-size: 18px;
  }

}

@media (max-width: 500px) {

  .section-title2 img {
    height: 66px;
  }

  h1 {
    font-size: 28px;
    margin: 0;
  }

  h2 {
    font-size: 26px;
    margin: 0;
  }

  h3 {
    font-size: 22px;
    margin: 0;
  }

  h4 {
    font-size: 20px;
    margin: 0;
  }

  h5 {
    font-size: 18px;
    margin: 0;
  }

  p {
    font-size: 16px;
    margin: 0;
  }

  .gap-20 {
    gap: 0px;
  }

  /* .warper-big-title h2 {
    font-size: 44px;
    } */

  .warper-big-title p {
    font-size: 22px;
  }

}

@media (max-width: 389px) {
  .show-mobile {
    display: block;
  }
}

/* Section Hero */

.hero-section {
  width: 100%;
  min-height: 1000px;
  background: #333;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: url(../images/section-hero/bg-sec-hero.webp?v=1.46) top center/3000px no-repeat;
  position: relative;
  overflow: hidden;
}



/* video bg */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 1920px; */
  height: 1000px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
}

.hero-content {
  width: 100%;
  max-width: 53%;
}


.hero-desc {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.hero-highlight {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(90deg, #af00007b 0%, #af000000 100%);
  font-size: 34px;
  font-weight: 600;
  color: #fff;
}

.text-warz-title {
  width: 575px;
  object-fit: contain;
}

.reward-box {
  width: 85%;
  padding: 20px;
  background: #000000b0;
}

.reward-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.reward-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-register {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: url(../images/section-hero/bg-btn-regis.webp?v=1.46) center/cover no-repeat;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-register:hover {
  filter: brightness(1.2);
}


@media (min-width: 1921px) {

  .hero-section {
    width: 2000px;
    margin: 0 auto;
  }

  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(to right,
        #000 0%,
        rgba(0, 0, 0, 0) 20%,
        rgba(0, 0, 0, 0) 80%,
        #000 100%);
  }
}


@media (max-width: 1300px) {
  .hero-content {
    max-width: 62%;
  }
}

@media (max-width: 1200px) {

  .hero-content {
    max-width: 53%;
  }

  .text-warz-title {
    width: 500px;
  }

  .hero-desc {
    font-size: 24px;
  }

  .hero-highlight {
    font-size: 30px;
  }

  .hero-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    max-width: 70%;
  }

  .hero-section {
    background: url(../images/section-hero/bg-sec-hero.webp?v=1.46) top center / cover no-repeat;
  }
}

/* Tablet */
@media (max-width: 992px) {

  .hero-section {
    align-items: flex-end;
    min-height: 100vh;
    padding: 60px 0 160px;
    background: url(../images/section-hero/bg-sec-hero-md.webp?v=1.46) top center / cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
  }

  .text-warz-title {
    width: 70%;
  }

  .hero-desc {
    text-align: center;
  }

  .hero-highlight {
    padding: 5px 50px;
    background: linear-gradient(90deg, #af000000 0%, #af00007b 50%, #af000000 100%);
  }

  .reward-box {
    width: 100%;
  }

  .warper-text-warz-title {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .btn-register {
    padding: 15px 20px;
  }

}

/* Small Mobile */
@media (max-width: 500px) {
  .text-warz-title {
    width: 70%;
  }

  .hero-highlight {
    font-size: 18px;
    padding: 5px 10px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-section h2 {
    font-size: 20px;
  }

  .btn-register {
    padding: 10px 20px;
    font-size: 24px;
  }
}

@media (max-width:375px) {
  .hero-section {
    padding: 60px 0 80px;
  }
}

/* Section News */

.section-news {
  background: url(../images/section-news/bg-sec-news.webp?v=1.46) top center/3000px no-repeat;
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  padding: 80px 0;
  overflow: hidden;
}

.warper-col-sec-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  /* เริ่มซ่อนอยู่ด้านล่าง */
  transform: translateY(120px);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
  will-change: transform, opacity;
}

/* ตอน scroll มาถึง section */
.section-news.show .warper-col-sec-news {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .warper-col-sec-news {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    will-change: auto !important;
  }

  .section-news.show .warper-col-sec-news {
    transform: none !important;
    opacity: 1 !important;
  }
}

.col-main-bg {
  width: 100%;
  min-height: 700px;
  height: auto;
  background: #0000008e;
  padding: 30px;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}

.col-tab-data {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.col-main-bg.dt-page {
  margin-top: 120px;
  display: block;
}


.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.tab {
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tab.scroll-x {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroll-x::-webkit-scrollbar {
  display: none;
  /* ซ่อน scrollbar บน Chrome/Safari */
}

.scroll-x>* {
  display: inline-block;
}

.col-head-tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.col-head-dt {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.tabcontent {
  display: none;
}

.tab button {
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn {
  background: url(../images/section-news/bg-tab.webp?v=1.46) center/contain no-repeat;
  max-width: 154px;
  width: 100%;
  height: 38px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  color: #ffffff;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: url(../images/section-news/bg-tab-active.webp?v=1.46) center/contain no-repeat;
  border: none;
  color: #fff;
}

.filter-btn:hover {
  background: url(../images/section-news/bg-tab-active.webp?v=1.46) center/contain no-repeat;
}

.filter-btn h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.btn-view-all {
  width: 190px;
  height: 44px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  background: url(../images/section-news/bg-btn-view-all.webp?v=1.46) center/contain no-repeat;
  color: #ffffff;
  border: none;
  border-radius: 0;
}

/* News Card */

.col-tag-date {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 10px 20px;
  background: #AF0000;
  min-height: 47px;
}

.col-tag-date.detail {
  padding: 0;
  background: none;
}

.col-text-all {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  min-height: 187px;
}

.col-text-all2 {
  padding: 0 20px;
}

.col-text-all2 hr {
  padding: 0 20px;
  color: #fff;
  opacity: .1;
}

.card-tag {
  color: #fff;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.card-tag.update::before,
.card-tag.promotion::before,
.card-tag.ingame::before,
.card-tag.event::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../images/section-news/ic-tag.webp?v=1.46');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2px;
}

.card-tag.update::after {
  content: "ข่าวสาร";
}

.card-tag.promotion::after {
  content: "โปรโมชัน";
}

.card-tag.ingame::after {
  content: "กิจกรรมในเกม";
}

.card-tag.event::after {
  content: "กิจกรรมหน้าเว็บ";
}

.card-body {
  display: flex;
  padding: 0;
  background: #191919;
  flex-direction: column;
}

.card-body .text-date {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #B9B9B9;
}

.card-body .text-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 0;
}

.card-body .text-detail {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #B9B9B9;
  margin-bottom: 0;
}

.card-body .btn-read-more {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  color: #ffffff;
}

.card-body .btn-read-more:hover {
  text-decoration: underline;
  color: #e50000;
  filter: brightness(1.1);
}

.card-body .btn-read-more:active {
  text-decoration: underline;
  color: #e50000;
  filter: brightness(1.1);
}

.card-body .btn-read-more .img-readmore {
  width: 8px;
  height: 8px;
  object-fit: contain;
}

.news-card {
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 10px #21212150;
}

.news-card:hover .card-body {
  background: #232323;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-card .badge {
  border-radius: 0;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
}

.box-btn-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
}

.news-card .read-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: #9b59b6;
  text-decoration: none;
}

.news-card .read-more:hover {
  text-decoration: underline;
}

.btn-back-all {
  position: relative;
  max-width: fit-content;
  width: 100%;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  color: #ffffff;
  margin-bottom: 25px;
  z-index: 10;
}

.btn-back-all:hover {
  color: #af0000;
}

.box-tag-date {
  display: flex;
  align-items: center;
}

.box-tag-date2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 30%;
  padding-top: 5px;
}

.box-tag-date .col-tag-date {
  margin: 0;
}

.box-tag-date .text-date {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #D8D8D8;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #ffffff33;
}

.col-h-dt-news {
  padding-right: 20px;
}

.text-share {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

.btn-share {
  width: 22px;
  height: 22px;
  margin-left: 12px;
}

.btn-share.fb {
  background: url(../images/section-news/ic-fb.webp?v=1.46) center/contain no-repeat;
}

.btn-share.ms {
  background: url(../images/section-news/ic-ms.webp?v=1.46) center/contain no-repeat;
}

.btn-share.x {
  background: url(../images/section-news/ic-x.webp?v=1.46) center/contain no-repeat;
}

.img-main-news {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  margin-bottom: 25px;
}

.main-btn {
  min-width: 120px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 0;
  background: none;
  padding: 0 15px;
  margin: 3px 0;
}

.main-btn.primary {
  background: #AF0000;
}

.main-btn.secondary {
  background: #686868;
}

.main-btn.outline {
  color: #AF0000;
  border: 1px solid #AF0000;
}

.main-btn:hover {
  filter: brightness(1.2);
}


.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  color: #fff;
  margin: 25px 0;
}

.table-container::-webkit-scrollbar {
  display: none;
}

.table-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  border-radius: 0;
  overflow: hidden;
}

thead tr {
  background: #141414;
}

thead th {
  padding: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

tbody tr {
  background: #202020;
}

tbody td {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

tbody tr:nth-child(even) {
  background: #242424;
}

.box-tag-date .card-tag {
  min-width: 70px;
}

.name-news-dt {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 15px;
}

.card-tag.detail {
  color: #D8D8D8;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

@media (min-width: 1921px) {

  .section-news {
    width: 2000px;
    margin: 0 auto;
    position: relative;
  }

  .section-news::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(to right,
        #000 0%,
        rgba(0, 0, 0, 0) 12%,
        rgba(0, 0, 0, 0) 88%,
        #000 100%);
  }
}


@media (max-width: 1200px) {

  .col-main-bg {
    min-height: 800px;
  }

  .col-main-bg.dt-page {
    margin-top: 100px;
  }

}

@media (max-width: 1024px) {


  .section-news {
    background-size: cover;
    min-height: fit-content;
    padding: 100px 0;
    justify-content: center;
  }

  .search-box {
    max-width: 180px;
    margin-left: 20px;
  }

}

@media (max-width: 992px) {


  .filter-btn {
    min-width: 140px;
  }

  .tab {
    justify-content: flex-start;
    gap: 5px;
  }

  .filter-btn h3 {
    font-size: 18px;
  }

  .row-card {
    justify-content: center;
  }

}

@media (max-width: 768px) {


  .filter-btn-allnews {
    margin-top: 15px;
  }

}

@media (max-width: 500px) {


  .card-body .text-detail {
    font-size: 16px;
    s
  }

  .btn-back-all {
    font-size: 16px;
  }

  .card-body .text-date {
    font-size: 16px;
  }

  .card-body .btn-read-more {
    font-size: 16px;
  }

  .card-tag {
    font-size: 16px;
  }

  .main-btn {
    font-size: 16px;
  }

  .name-news-dt {
    font-size: 28px;
  }

  .box-tag-date .text-date {
    font-size: 16px;
  }

  .card-tag.detail {
    font-size: 16px;
  }

  .col-main-bg {
    padding: 15px;
    border-radius: 0;
  }

  .title-page {
    font-size: 40px;
    margin-bottom: 0;
  }

  .tab {
    overflow: hidden;
    margin-bottom: 0px;
  }

  .filter-btn {
    min-width: 135px;
  }

  .filter-btn-allnews {
    margin-top: 25px;
  }


  .col-head-dt {
    flex-direction: column;
  }

  .box-tag-date .card-tag {
    min-width: 56px;
  }

  .col-h-dt-news {
    padding: 0;
    order: 2;
  }

  .box-tag-date2 {
    min-width: 100%;
    padding-top: 20px;
    order: 1;
    position: absolute;
    right: 15px;
    top: -3px;
    z-index: 5;
  }

  .btn-share {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }

  .img-main-news {
    border-radius: 0;
  }

  .col-main-bg {
    min-height: 700px;
  }

  .col-main-bg.dt-page {
    margin-top: 90px;
  }

  .title-page {
    filter: drop-shadow(0px 2px 8px #00000077);
  }

  .col-tab-data {
    gap: 20px;
  }

  .warper-col-sec-news {
    gap: 20px;
    width: 100%;
    padding: 15px;
  }

}

@media (max-width: 375px) {

  .filter-btn {
    max-width: 92px;
    border-radius: 0;
  }

  .filter-btn h3 {
    font-size: 12px;
  }

  .col-main-bg {
    min-height: 500px;
  }

}

/* Section Creator */

.section-creator {
  background: url(../images/section-creator/bg-sec-creator.webp?v=1.46) top center/3000px no-repeat;
  min-height: 1000px;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

.bg-video.creator {
  display: block;
}

.creator-container {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}


.creator-content {
  background: #000000e0;
  padding: 30px;
  max-width: 100%;

  /* Slide from right edge */
  transform: translateX(120%);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
  will-change: transform, opacity;
}

.section-creator.is-active .creator-content {
  transform: translateX(0);
  opacity: 1;
}

.text-sergey-des {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

@media (prefers-reduced-motion: reduce) {
  .creator-content {
    transition: none;
  }
}

.creator-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.creator-label span {
  display: block;
  width: 14px;
  height: 96px;
  background: #d10b0b;
  flex-shrink: 0;
}

.text-sergey {
  width: 417px;
  object-fit: contain;
}

.box-name-ceo {
  padding: 5px 15px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #af000089 30%, #af000000 100%);
  color: #ffffff;
}

.box-name-ceo p {
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  color: #ffffff;
}

.box-name-ceo span {
  font-family: "tannakone-condensed", sans-serif;
  margin: 0;
}

@media (min-width: 1921px) {

  .section-creator {
    width: 2000px;
    margin: 0 auto;
  }

  .section-creator::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(to right,
        #000000 0%,
        transparent 20%,
        transparent 80%,
        #000000 100%)
  }
}

@media (max-width: 1440px) {
  .creator-container {
    width: max(1320px, 100%);
  }
}

@media (max-width: 1024px) {

  .text-sergey {
    width: 330px;
  }

  .section-creator {
    background: url(../images/section-creator/bg-sec-creator-md.webp?v=1.46) top center / cover no-repeat;
    min-height: 105vh;
    align-items: flex-end;
  }

  .bg-video.creator {
    display: none;
  }

  .creator-section {
    min-height: auto;
  }

  .creator-container {
    grid-template-columns: 1fr;
    padding: 60px;
    gap: 0;
  }

  .creator-visual {
    text-align: center;
  }

  .creator-visual img {
    max-width: 560px;
    margin: 0 auto;
  }

  .creator-content {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .section-creator {
    min-height: 120vh;
  }

  .text-sergey-des {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .section-creator {
    background: url(../images/section-creator/bg-sec-creator-sm.webp?v=1.46) top center / cover no-repeat, #0A0A0A;
    min-height: 120vh;
    padding: 0 0 80px;
  }

  .text-sergey-des {
    font-size: 22px;
  }

  .box-name-ceo {
    padding: 5px 10px;
    margin-bottom: 5px;
  }

  .box-name-ceo p {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .text-sergey {
    width: 80%;
  }

  .creator-content .warper-big-title h2 {
    font-size: 25px;
  }

  .creator-container {
    padding: 20px;
  }
}




/* Section Gameplay */

.section-gameplay {
  background: url(../images/section-gameplay/bg-sec-gameplay.webp?v=1.46) top center/3000px no-repeat;
  min-height: 1000px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}


.warper-col-head-gameplay {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gameplay-head {
  margin-bottom: 35px;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-row img {
  width: 18px;
}

.title-row h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 800;
}

.gameplay-head h3 {
  margin: 10px 0 0;
  font-size: 34px;
  font-weight: 700;
}

.gameplay-swiper {
  position: relative;
  overflow: visible;
  margin-top: 10px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.slider-btn {
  width: 28px;
  height: 38px;
  border: 0;
  background: none;
  padding: 0;
}

.slider-btn img {
  width: 100%;
}

.gameplay-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  gap: 14px;
}

.gameplay-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  margin: 0 !important;
  opacity: 1;
  border-radius: 0;
  background: url("../images/section-gameplay/ic-dot.webp?v=1.46") center/contain no-repeat;
}

.gameplay-pagination .swiper-pagination-bullet-active {
  background: url("../images/section-gameplay/ic-dot-active.webp?v=1.46") center/contain no-repeat;
  filter: drop-shadow(0 0 10px #fc2222);
}

.gameplay-card {
  position: relative;
}

.character {
  position: absolute;
  left: 40px;
  bottom: -10px;
  width: 320px;
  z-index: 3;
}

.banner-wrap {
  position: relative;
  padding-left: 220px;
}

.banner-img {
  width: 100%;
  display: block;
}

.col-banner-img {
  position: relative;
}

.bn01.col-banner-img::after {
  content: "";
  position: absolute;
  left: -260px;
  top: -5px;
  width: 430px;
  height: 590px;
  background: url(../images/section-gameplay/after-banner01.webp?v=1.46) center / contain no-repeat;
}

.bn02.col-banner-img::after {
  content: "";
  position: absolute;
  left: -240px;
  top: -34px;
  width: 430px;
  height: 610px;
  background: url(../images/section-gameplay/after-banner02.webp?v=1.46) center / contain no-repeat;
}

.bn03.col-banner-img::after {
  content: "";
  position: absolute;
  left: -188px;
  top: -25px;
  width: 430px;
  height: 590px;
  background: url(../images/section-gameplay/after-banner03.webp?v=1.46) center / contain no-repeat;
}

.bn04.col-banner-img::after {
  content: "";
  position: absolute;
  left: -275px;
  top: -18px;
  width: 514px;
  height: 560px;
  background: url(../images/section-gameplay/after-banner04.webp?v=1.46) center / contain no-repeat;
}


.banner-text {
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 70%;
  z-index: 99;
}

.banner-text h3 {
  margin: 0;
  padding: 5px 15px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  background: url(../images/section-gameplay/bg-text-head.webp?v=1.46) left center/100% 100% no-repeat;
}

.banner-text p {
  margin: 0;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  background: linear-gradient(90deg, #000000d4 30%, #00000000 100%);
}

@media (min-width: 1921px) {

  .section-gameplay {
    width: 2000px;
    margin: 0 auto;
    position: relative;
  }

  .section-gameplay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(to right,
        #000 0%,
        rgba(0, 0, 0, 0) 12%,
        rgba(0, 0, 0, 0) 88%,
        #000 100%);
  }
}


@media(max-width:1024px) {
  .bn01.col-banner-img::after {
    left: -190px;
    top: -5px;
    width: 320px;
    height: 380px;
  }

  .bn02.col-banner-img::after {
    left: -224px;
    top: -18px;
    width: 330px;
    height: 360px;
  }

  .bn03.col-banner-img::after {
    left: -208px;
    top: -23px;
    width: 430px;
    height: 430px;
  }

  .bn04.col-banner-img::after {
    left: -205px;
    top: -98px;
    width: 364px;
    height: 560px;
  }

  .gameplay-swiper {
    margin-top: 30px;
  }

  .section-gameplay {
    background-size: cover;
    min-height: fit-content;
    padding: 100px 0;
  }

  .banner-wrap {
    padding-left: 150px;
    padding-bottom: 40px;
  }
}

@media(max-width:992px) {

  .section-gameplay .section-title-left {
    justify-content: center;
  }

  .warper-col-head-gameplay .warper-big-title {
    width: 100%;
  }

  .warper-col-head-gameplay {
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  .banner-wrap {
    padding-left: 140px;
    padding-bottom: 60px;
  }

  .bn01.col-banner-img::after {
    left: -190px;
    top: -5px;
    width: 320px;
    height: 310px;
  }

  .bn02.col-banner-img::after {
    left: -194px;
    top: -18px;
    width: 280px;
    height: 310px;
  }

  .bn03.col-banner-img::after {
    left: -184px;
    top: -14px;
    width: 340px;
    height: 320px;
  }

  .bn04.col-banner-img::after {
    left: -155px;
    top: -101px;
    width: 264px;
    height: 470px;
  }

  .banner-text h3 {
    padding: 5px 15px;
    font-size: 28px;
  }
}

@media(max-width:576px) {

  .gameplay-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }

  .section-gameplay .section-title-left {
    gap: 10px;
  }

  .gameplay-swiper {
    margin-top: 15px;
  }

  .warper-col-head-gameplay {
    align-items: center;
  }

  .banner-wrap {
    padding-left: 10%;
    padding-bottom: 50px;
  }

  .banner-text h3 {
    padding: 3px 10px;
    font-size: 22px;
  }

  .banner-text p {
    font-size: 16px;
  }

  .banner-text {
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .bn01.col-banner-img::after {
    left: -70px;
    top: -9px;
    width: 160px;
    height: 240px;
  }

  .bn02.col-banner-img::after {
    left: -55px;
    top: -13px;
    width: 123px;
    height: 180px;
  }

  .bn03.col-banner-img::after {
    left: -110px;
    top: -12px;
    width: 270px;
    height: 200px;
  }

  .bn04.col-banner-img::after {
    left: -54px;
    top: -104px;
    width: 144px;
    height: 350px;
  }
}
