@charset "UTF-8";
@font-face {
  font-family: Poppins;
  font-display: swap;
  src: url(../fontfiles/Poppins-Bold.woff2) format("woff2"), url(../fontfiles/Poppins-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  font-display: swap;
  src: url(../fontfiles/Poppins-Regular.woff2) format("woff2"), url(../fontfiles/Poppins-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  font-display: swap;
  src: url(../fontfiles/Poppins-SemiBold.woff2) format("woff2"), url(../fontfiles/Poppins-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}
:root {
  --primary-bg-color:#0c162d;
  --secondary-bg-color:#000;
  --highlight-color:#F3FF44;
  --green-color:#00c27a;
  --text-color:#f4f6fb;
  --table-border-color:#374975;
  --button-bg-color:#64e5f7;
  --button-text-color:#0c162d;
  --accent-color:#fd5376;
  --section-bg-color:#141e38;
  --orange-2:#F9C336;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;
  background-color: var(--primary-bg-color);
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.8;
  background-image: linear-gradient(135deg, rgba(12, 22, 45, 0.9) 0, rgba(26, 41, 71, 0.8) 100%);
}

a {
  color: var(--highlight-color);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:not([class]) {
  text-decoration: underline;
}

a:hover {
  color: var(--orange-2);
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}

h1 {
  font-size: 32px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

h1:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--highlight-color);
  bottom: 0;
  left: 20%;
}

h2 {
  font-size: 26px;
  color: var(--highlight-color);
}

h3 {
  font-size: 20px;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

ol, ul {
  margin: 15px 0 15px 20px;
}

p {
  margin-bottom: 20px;
}

.contentBox {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.headerArea {
  background-color: var(--secondary-bg-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.heroContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.brandLogo {
  width: 200px;
}

.brandLogo img {
  width: 100%;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.ctaGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.primaryCta {
  display: inline-block;
  padding: 10px 24px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid;
  letter-spacing: 0.05em;
}

.outlinedCta {
  background-color: transparent;
  border-color: var(--highlight-color);
  color: var(--text-color);
}

.outlinedCta:hover {
  background-color: var(--highlight-color);
  color: var(--button-text-color);
  border-color: var(--highlight-color);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(100, 229, 247, 0.3);
  box-shadow: 0 4px 12px rgba(100, 229, 247, 0.3);
}

.mainCta {
  background-color: var(--highlight-color);
  color: var(--button-text-color);
  border-color: var(--highlight-color);
}

.mainCta:hover {
  background-color: var(--green-color);
  color: var(--text-color);
  border-color: var(--green-color);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 194, 122, 0.3);
  box-shadow: 0 4px 12px rgba(0, 194, 122, 0.3);
}

.fullCta {
  width: 100%;
  font-size: 16px;
  padding: 14px 28px;
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
  color: var(--button-text-color);
  margin: 20px 0;
}

.fullCta:hover {
  background-color: var(--green-color);
  border-color: var(--green-color);
  color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(0, 194, 122, 0.4);
  box-shadow: 0 6px 15px rgba(0, 194, 122, 0.4);
}

.heroVisual {
  padding: 50px 0 30px;
  position: relative;
  border-top: none;
  text-align: center;
}

.heroVisual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets-img/background-main.webp);
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.visualHeading {
  margin-bottom: 30px;
  color: var(--text-color);
}

.visualImg {
  margin-bottom: 30px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.agreementVisual {
  margin: 0 auto;
  max-width: 800px;
}

.agreementVisual img {
  max-width: 100%;
}

.visualImg img {
  width: 100%;
}

.visualImg:hover {
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.visualDescription {
  text-align: left;
  margin-top: 30px;
  padding: 20px;
  background-color: var(--section-bg-color);
  border-radius: 10px;
  border-left: 4px solid var(--highlight-color);
}

.tableWrapper {
  margin: 30px 0;
  overflow-x: auto;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  background-color: var(--section-bg-color);
}

td, th {
  padding: 12px 15px;
  text-align: center;
  border: 1px solid var(--table-border-color);
}

th {
  background-color: var(--secondary-bg-color);
  color: var(--highlight-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
}

tr:nth-child(even) {
  background-color: rgba(26, 41, 71, 0.4);
}

.mainContent {
  padding: 40px 0;
  position: relative;
}

.blockTitle {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.blockTitle:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--highlight-color);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.accordionBlock {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accordionHeader {
  background-color: var(--secondary-bg-color);
  padding: 15px 20px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-left: 4px solid var(--highlight-color);
}

.accordionHeader.isActive .toggleArrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordionHeader:hover {
  background-color: rgba(26, 41, 71, 0.8);
}

.collapseContent {
  padding: 20px;
  display: none;
  background-color: var(--section-bg-color);
}

.collapseContent ul {
  list-style: none;
}

.collapseContent.isActive {
  display: block;
}

.collapseContent a {
  color: var(--highlight-color);
  position: relative;
  text-decoration: none;
}

.collapseContent a:hover {
  color: var(--green-color);
}

.collapseContent a:before {
  content: "→";
  margin-right: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.collapseContent a:hover:before {
  margin-right: 8px;
}

.gamesLayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gameCard {
  width: calc(16.66% - 20px);
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--section-bg-color);
  border-radius: 12px;
  padding: 15px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.gameCard a {
  text-decoration: none;
}

.gameCard:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.gameCard img {
  border-radius: 8px;
  margin-bottom: 10px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.gameCard:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.gameLabel {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--highlight-color);
}

.dualLayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.centered-image{
  display: block;
  margin: 20px auto;
}

.columnLine {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: var(--section-bg-color);
  border-radius: 12px;
  padding: 25px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.columnLine h3{
  color: var(--highlight-color);
}

.accent-color{
  color: var(--highlight-color);
}

.spotlightCard {
  background: linear-gradient(135deg, var(--highlight-color) 0, var(--green-color) 100%);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  margin-top: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(100, 229, 247, 0.3);
  box-shadow: 0 5px 15px rgba(100, 229, 247, 0.3);
}

.spotlightCard h3 {
  color: var(--secondary-bg-color);
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}

.faqEntry {
  margin-bottom: 30px;
  background-color: var(--section-bg-color);
  border-radius: 10px;
  padding: 20px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faqEntry:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.faqQuestion {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--highlight-color);
  position: relative;
}

.faqAnswer {
  margin-bottom: 0;
  position: relative;
}

.backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  background: linear-gradient(135deg, var(--highlight-color) 0, var(--green-color) 100%);
  color: var(--secondary-bg-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
  -webkit-box-shadow: 0 5px 15px rgba(100, 229, 247, 0.4);
  box-shadow: 0 5px 15px rgba(100, 229, 247, 0.4);
}

.backToTop svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.backToTop.show {
  opacity: 1;
}

.backToTop:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(100, 229, 247, 0.5);
  box-shadow: 0 8px 20px rgba(100, 229, 247, 0.5);
}

.badgeItem {
  display: inline-block;
  background-color: var(--orange-2);
  color: var(--text-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin: 5px 5px 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--button-text-color);
}

.badgeItem:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sectionDivider {
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--highlight-color)), color-stop(var(--green-color)), to(var(--accent-color)));
  background: linear-gradient(to right, var(--highlight-color), var(--green-color), var(--accent-color));
  margin-bottom: 40px;
  border-radius: 3px;
  margin-top: 10px;
}

.faceCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.toggleArrow {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media (max-width: 1024px) {
  .gameCard {
    width: calc(25% - 20px);
  }
}
@media (max-width: 768px) {
  .dualLayout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .gameCard {
    width: calc(33.33% - 20px);
  }
  .ctaGroup .primaryCta {
    font-size: 13px;
    padding: 8px 15px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
}
@media (min-width: 767.98px) {
  .columnLine:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 767.98px) {
  .mainContent {
    padding: 15px 0;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .gameCard {
    width: calc(50% - 15px);
  }
  .heroContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .ctaGroup {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .ctaGroup > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
  .backToTop {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .columnLine {
    padding: 20px;
  }
}