@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Gabarito:wght@400..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --font-family: "Outfit", sans-serif;
  --second-family: "Poppins", sans-serif;
  --third-family: "DM Sans", sans-serif;
  --font3: "Gabarito", sans-serif;
  --font4: "Nunito", sans-serif;
  --bg-primary: #1a1927;
  --bg-secondary: #262b3f;
  --accent-color: #df025f;
  --text-primary: #fff;
  --text-secondary: #c9c9c9;
  --container-padding: 20px;
}

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

body {
  background: var(--bg-primary);
  font-family: var(--font-family);
  overflow-x: hidden;
}

ul {
  margin: 0;
  padding: 0;
}

.btn {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 137%;
  text-align: center;
  color: var(--text-primary);
  background: var(--accent-color);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 50px;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.title-primary {
  color: var(--text-primary);
}

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

.description {
  color: var(--text-secondary);
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section_heading h2 {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 50px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .section_heading h2 {
    font-size: 42px;
  }
}
.section_heading p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 137%;
  color: #c9c9c9;
  margin-bottom: 30px;
}

.site-header {
  background: var(--bg-secondary);
  padding: 15px 0;
  position: relative;
}
.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .main-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
.site-header .main-nav ul li a {
  font-family: var(--font-family);
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.site-header .main-nav ul li a:hover {
  color: var(--accent-color);
}
.site-header .contact-btn .btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header .contact-btn .btn i {
  font-size: 14px;
}
.site-header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.site-header .menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
}
.site-header .contact-btn .btn.header_btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 5px 5px 35px;
  background-color: #1b1b2f;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.site-header .contact-btn .btn.header_btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #df025f;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-left: 12px;
}
.site-header .contact-btn .btn.header_btn svg {
  width: 20px;
  height: 20px;
}
.site-header .contact-btn .btn.header_btn:hover {
  border: 1px solid #df025f;
}
.site-header .current_page_item a {
  color: #df025f !important;
}
.site-header .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background: var(--bg-secondary);
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 999;
}
.site-header .mobile-menu ul {
  list-style: none;
  width: 100%;
  margin-top: 60px;
}
.site-header .mobile-menu ul li {
  margin-bottom: 20px;
}
.site-header .mobile-menu ul li a {
  font-family: var(--second-family);
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
}
.site-header .mobile-menu ul li a:hover {
  color: var(--accent-color);
}
.site-header .mobile-menu .close-menu {
  font-size: 30px;
  color: var(--text-primary);
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .site-header .main-nav,
  .site-header .contact-btn {
    display: none;
  }
  .site-header .menu-toggle {
    display: flex;
  }
  .site-header .mobile-menu.active {
    display: flex;
    animation: slideIn 0.3s ease forwards;
  }
}
@keyframes slideIn {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background: url("./../images/hero_bg.png") no-repeat center center/cover;
  position: relative;
  padding: 50px 0;
}
.hero .hero-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero .hero-content {
  padding: 50px 0px;
  max-width: 600px;
}
.hero .hero-content h5 {
  font-family: var(--font4);
  letter-spacing: 8px;
  color: var(--text-primary);
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.29em;
  margin-bottom: 30px;
}
.hero .hero-content h1 {
  font-family: var(--font-family);
  font-size: 80px;
  font-weight: 900;
  line-height: 100%;
  color: var(--text-primary);
  margin: 20px 0px;
}
.hero .hero-content p {
  font-family: var(--font-family);
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 20px;
  max-width: 600px;
}
.hero .hero-content .note {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 900;
  font-family: var(--second-family);
  margin-top: 70px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero .hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .hero-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
    text-align: center;
  }
  .hero .hero-container {
    flex-direction: column;
  }
  .hero .hero-image {
    display: none;
  }
  .hero .hero-content {
    padding: 0px;
  }
  .hero .hero-content h1 {
    font-size: 55px;
    margin: 20px 0px;
  }
  .hero .hero-content p {
    margin-bottom: 20px;
  }
  .hero .hero-content .note {
    margin-top: 40px;
  }
}

.games-section {
  background: var(--bg-primary);
}
.games-section .section-title {
  font-family: var(--font-family);
  font-size: 35px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 100%;
  text-transform: uppercase;
}
.games-section .games-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 30px;
  align-items: stretch;
}
.games-section {
  /* Left big image */
}
.games-section .game-featured {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
}
.games-section .game-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.games-section .game-featured:hover img {
  transform: scale(1.05);
}
.games-section {
  /* Right grid images */
}
.games-section .games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.games-section .games-grid .game-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease;
}
.games-section .games-grid .game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.games-section .games-grid .game-card:hover img {
  transform: scale(1.05);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .games-section .games-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .games-section .games-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
@media (max-width: 768px) {
  .games-section .section-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
  .games-section .games-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .games-section .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .games-section .game-featured img {
    max-height: 300px;
    object-fit: cover;
  }
}

.games-section-other .section-title {
  font-family: var(--font-family);
  font-size: 35px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
  line-height: 100%;
  text-transform: uppercase;
}
.games-section-other .games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.games-section-other .games-grid .game-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease;
}
.games-section-other .games-grid .game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.games-section-other .games-grid .game-card:hover img {
  transform: scale(1.05);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .games-section-other .games-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .games-section-other .games-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
@media (max-width: 768px) {
  .games-section-other .section-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
  .games-section-other .games-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .games-section-other .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .games-section-other .game-featured img {
    max-height: 300px;
    object-fit: cover;
  }
}

.feature-section {
  background: #15141f;
  padding: 40px 0;
  margin-top: 50px;
}
.feature-section .features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.feature-section .feature-box {
  display: flex;
  align-items: center;
  background: transparent;
  gap: 20px;
  flex: 1 1 30%;
  min-width: 280px;
}
.feature-section .feature-box .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, #df025f 0%, #621f4b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.feature-section .feature-box .feature-icon img {
  object-fit: contain;
}
.feature-section .feature-box .feature-icon:hover {
  transform: scale(1.05);
}
.feature-section .feature-box .feature-content h3 {
  font-family: var(--font-family);
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-section .feature-box .feature-content p {
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .feature-section .features {
    justify-content: center;
  }
  .feature-section .feature-box {
    flex: 1 1 45%;
    gap: 15px;
  }
  .feature-section .feature-box .feature-icon {
    width: 70px;
    height: 70px;
  }
  .feature-section .feature-box .feature-icon img {
    width: 35px;
  }
  .feature-section .feature-box .feature-content h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .feature-section {
    padding: 40px 0;
  }
  .feature-section .features {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .feature-section .feature-box {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
  }
  .feature-section .feature-box .feature-icon {
    width: 60px;
    height: 60px;
  }
  .feature-section .feature-box .feature-icon img {
    width: 50px;
  }
  .feature-section .feature-box .feature-content h3 {
    font-size: 16px;
  }
  .feature-section .feature-box .feature-content p {
    font-size: 14px;
  }
}

.no-purchase-section {
  background: url("./../images/no-purchase-bg.png") no-repeat center center/cover;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.no-purchase-section .no-purchase-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.no-purchase-section .no-purchase-left {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.no-purchase-section .no-purchase-left .shape-bg {
  position: absolute;
  top: 15%;
  right: 0%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  z-index: 999;
}
.no-purchase-section .no-purchase-left .shape-bg img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 25px rgba(223, 2, 95, 0.4));
}
.no-purchase-section .no-purchase-left .character-img {
  position: relative;
  z-index: 2;
}
.no-purchase-section .no-purchase-left .character-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.no-purchase-section .no-purchase-content {
  flex: 1;
  color: var(--text-primary);
  position: relative;
  z-index: 3;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .no-purchase-section {
    padding: 90px 0;
  }
  .no-purchase-section .no-purchase-wrapper {
    gap: 50px;
  }
  .no-purchase-section .no-purchase-left .character-img img {
    max-width: 320px;
  }
  .no-purchase-section .no-purchase-left .shape-bg {
    display: none;
  }
  .no-purchase-section .no-purchase-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .no-purchase-section {
    padding: 70px 0;
    text-align: center;
  }
  .no-purchase-section .no-purchase-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .no-purchase-section .no-purchase-left .shape-bg {
    display: none;
  }
  .no-purchase-section .no-purchase-left .character-img img {
    max-width: 350px;
  }
}

.stats-section {
  position: relative;
  background: var(--bg-primary);
  padding: 70px 0;
  overflow: hidden;
}
.stats-section .stats-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0px;
  flex-wrap: wrap;
  text-align: center;
}
.stats-section .stat-box h3 {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 66px;
  letter-spacing: -0.01em;
  text-align: center;
  background: linear-gradient(180deg, #df025f 0%, #1a1927 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.stats-section .stat-box p {
  font-family: var(--font-family);
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0;
}
.stats-section .gem {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: auto;
  height: auto;
}
.stats-section .gem.gem-left {
  top: 0%;
  left: 5%;
  width: 100px;
}
.stats-section .gem.gem-right {
  bottom: 0%;
  width: 100px;
  right: 5%;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats-section {
    padding: 40px 0;
  }
  .stats-section .stats-wrapper {
    gap: 60px;
  }
  .stats-section .gem {
    display: none;
  }
}
@media (max-width: 768px) {
  .stats-section {
    padding: 0px;
  }
  .stats-section .stats-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .stats-section .gem {
    display: none;
  }
}

.how-it-works {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.how-it-works .how-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.how-it-works .how-content {
  flex: 1;
}
.how-it-works .how-content .how-list {
  padding-top: 30px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.how-it-works .how-content .how-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.how-it-works .how-content .how-list li .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-it-works .how-content .how-list li p {
  max-width: 580px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .how-it-works {
    padding: 90px 0;
  }
  .how-it-works .how-wrapper {
    gap: 40px;
  }
  .how-it-works .how-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .how-it-works {
    padding: 70px 0;
    text-align: center;
  }
  .how-it-works .how-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .how-it-works .how-content .how-list {
    align-items: center;
  }
  .how-it-works .how-content .how-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .how-it-works .how-content .how-list li p {
    max-width: 90%;
  }
  .how-it-works .how-image {
    display: none;
  }
}

.faq-section {
  text-align: center;
  padding: 50px 0px;
}
.faq-section .faq_main {
  background: url("./../images/faq_bg.png") no-repeat top center/contain;
}
.faq-section .faq-title {
  margin-bottom: 50px;
}
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-section .faq-item {
  background: var(--bg-secondary);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--accent-color);
}
.faq-section .faq-item.active .faq-question .text {
  color: #fff;
}
.faq-section .faq-item.active .faq-question .icon svg {
  width: 24px;
  height: 24px;
}
.faq-section .faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0px 25px 25px 60px;
  margin-left: 15px;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px 25px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
.faq-section .faq-item .faq-question .icon {
  flex-shrink: 0;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-section .faq-item .faq-question .icon svg {
  width: 16px;
  height: 9px;
}
.faq-section .faq-item .faq-question .text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  flex: 1;
}
.faq-section .faq-item .faq-answer {
  font-family: var(--font-family);
  font-size: 20px;
  color: #fff;
  text-align: start;
  line-height: 166%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px 0 60px;
}
@media (max-width: 768px) {
  .faq-section .faq-section {
    padding: 0px;
  }
  .faq-section .faq-title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .faq-section .faq-item .faq-question {
    gap: 15px;
    padding: 18px;
  }
  .faq-section .faq-item .faq-question .text {
    font-size: 20px;
  }
  .faq-section .faq-item.active .faq-answer {
    padding: 15px 18px 20px 48px;
  }
}

.text-section p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 250%;
  color: #fff;
}

.page-template-default .text-section {
  padding-bottom: 40px;
}

.contact-section {
  padding: 50px 0;
}
.contact-section .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 25px;
  color: #fff;
  font-family: var(--font-family);
}
.contact-section .contact-form {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}
.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: none;
  border-radius: 10px;
  padding: 15px 18px;
  font-family: var(--second-family);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  resize: none;
  transition: all 0.3s ease;
}
.contact-section .contact-form .form-group input::placeholder,
.contact-section .contact-form .form-group textarea::placeholder {
  color: var(--text-secondary);
  font-size: 14px;
}
.contact-section .contact-form .form-group input:focus,
.contact-section .contact-form .form-group textarea:focus {
  border: 1px solid var(--accent-color);
  box-shadow: 0 0 10px rgba(223, 2, 95, 0.3);
}
.contact-section .contact-form .submit-btn {
  width: 100%;
  border-radius: 30px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--third-family);
}
.contact-section .contact-form .submit-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }
  .contact-section .contact-form {
    gap: 15px;
  }
  .contact-section .contact-form .submit-btn {
    font-size: 15px;
    padding: 14px 0;
  }
  .contact-section .contact-form input,
  .contact-section .contact-form textarea {
    font-size: 14px;
    padding: 12px 15px;
  }
}

.single-game-section {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .single-game-section {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .single-game-section {
    padding: 60px 0;
  }
}

.game-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.game-title-wrapper .game-title-single {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.06em;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .game-title-wrapper .game-title-single {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .game-title-wrapper .game-title-single {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .game-title-wrapper .game-title-single {
    font-size: 24px;
  }
}

.game-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-iframe-wrapper {
  width: 100%;
  max-width: 100%;
  background: #262b3f;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}
.game-iframe-wrapper iframe {
  width: 100%;
  height: 700px;
  display: block;
  border: none;
  border-radius: 15px;
}
@media (max-width: 1024px) {
  .game-iframe-wrapper iframe {
    height: 550px;
  }
}
@media (max-width: 768px) {
  .game-iframe-wrapper iframe {
    height: 450px;
  }
}
@media (max-width: 600px) {
  .game-iframe-wrapper iframe {
    height: 350px;
  }
}

.site-footer .main_footer {
  background: #262b3f;
  padding: 60px 0 30px;
  margin-bottom: 30px;
  border-radius: 15px;
  text-align: center;
  color: var(--text-primary);
}
.site-footer .footer-logo {
  margin-bottom: 25px;
}
.site-footer .footer-logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.site-footer .footer-logo img:hover {
  transform: scale(1.05);
}
.site-footer .footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  padding: 0;
}
.site-footer .footer-nav li a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-nav li a:hover {
  color: var(--accent-color);
}
.site-footer .footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 25px auto;
  max-width: 700px;
}
.site-footer .footer-disclaimer {
  max-width: 680px;
  margin: 0 auto 30px;
}
.site-footer .footer-disclaimer p {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 179%;
  color: var(--text-secondary);
}
.site-footer .footer-disclaimer h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  text-align: center;
  color: #fff;
  margin: 20px 0px;
  text-transform: uppercase;
}
.site-footer .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 25px;
}
.site-footer .footer-logos a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.site-footer .footer-logos a:hover {
  transform: translateY(-3px);
}
.site-footer .footer-logos a img {
  max-height: 40px;
  width: auto;
}
.site-footer .copyright {
  font-family: var(--second-family);
  font-size: 14px;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 25px;
  }
  .site-footer .footer-nav {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }
  .site-footer .footer-nav li a {
    font-size: 15px;
  }
  .site-footer .footer-logos {
    gap: 25px;
  }
  .site-footer .footer-logos img {
    max-height: 30px;
  }
  .site-footer .footer-disclaimer p {
    font-size: 13px;
    padding: 0 15px;
  }
}

.spin-age-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 9, 15, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.spin-age-overlay.active {
  opacity: 1;
  visibility: visible;
}

.spin-age-modal {
  position: relative;
  background: var(--bg-secondary);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 0 40px rgba(223, 2, 95, 0.25);
  overflow: hidden;
  border: 2px solid rgba(223, 2, 95, 0.5);
}
.spin-age-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(223, 2, 95, 0.15), rgb(26, 25, 39));
  z-index: 0;
}
.spin-age-modal > * {
  position: relative;
  z-index: 2;
}
.spin-age-modal .spin-modal-logo {
  margin-bottom: 25px;
}
.spin-age-modal .spin-modal-logo img {
  width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.spin-age-modal .spin-modal-text {
  font-family: var(--second-family);
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}
.spin-age-modal .spin-btn-age {
  background: var(--accent-color);
  color: #fff;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(223, 2, 95, 0.4);
}
.spin-age-modal .spin-btn-age:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(223, 2, 95, 0.6);
}

@media (max-width: 768px) {
  .spin-age-modal {
    padding: 40px 25px;
  }
  .spin-age-modal .spin-modal-logo img {
    width: 100px;
  }
  .spin-age-modal .spin-modal-text {
    font-size: 16px;
  }
  .spin-age-modal .spin-btn-age {
    font-size: 16px;
    padding: 12px 35px;
  }
}
.spin-cookie-bar {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 25px 0;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.spin-cookie-bar.active {
  bottom: 0;
  opacity: 1;
}
.spin-cookie-bar .spin-cookie-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.spin-cookie-bar .spin-cookie-text {
  font-family: var(--second-family);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  min-width: 250px;
}
.spin-cookie-bar .spin-cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.spin-cookie-bar .spin-cookie-actions .spin-cookie-btn {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.spin-cookie-bar .spin-cookie-actions .spin-cookie-btn.accept {
  background: var(--accent-color);
  color: #fff;
}
.spin-cookie-bar .spin-cookie-actions .spin-cookie-btn.accept:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.spin-cookie-bar .spin-cookie-actions .spin-cookie-btn.decline {
  background: transparent;
  border: 1px solid var(--text-secondary);
  color: var(--text-secondary);
}
.spin-cookie-bar .spin-cookie-actions .spin-cookie-btn.decline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.spin-cookie-bar .spin-cookie-actions .spin-cookie-link {
  font-family: var(--second-family);
  font-size: 14px;
  color: var(--accent-color);
  text-decoration: underline;
  margin-left: 10px;
  transition: color 0.3s ease;
}
.spin-cookie-bar .spin-cookie-actions .spin-cookie-link:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .spin-cookie-bar {
    text-align: center;
    padding: 20px 0;
  }
  .spin-cookie-bar .spin-cookie-container {
    flex-direction: column;
    gap: 15px;
  }
  .spin-cookie-bar .spin-cookie-actions {
    justify-content: center;
  }
  .spin-cookie-bar .spin-cookie-actions .spin-cookie-btn {
    padding: 10px 20px;
  }
  .spin-cookie-bar .spin-cookie-actions .spin-cookie-link {
    display: block;
    margin-top: 8px;
  }
}

/*# sourceMappingURL=style.css.map */
