/*!
Theme Name: turbospinner

*/

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..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: "Figtree", sans-serif;
  --second-family: "Poppins", sans-serif;
  --color-white: #fff;
  --color-primary:#1D1C48;
}

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

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

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px;
}

.btn-gradient {
  background: linear-gradient(180deg, #695fda 0%, #5446c1 100%);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-play {
  display: inline-block;
  padding: 12px 50px;
  border-radius: 6px;
  background: linear-gradient(180deg, #695fda 0%, #5446c1 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: linear-gradient(180deg, #695fda 0%, #715fda 100%);
  transform: translateY(-2px);
}
@media (max-width: 575px) {
  .btn-play {
    padding: 10px 40px;
  }
}


.header {
  background: #272652;
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #695fda;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  background: #272652;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu li {
  margin: 10px 0;
}
.mobile-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}


@media (max-width: 991px) {
  .nav-menu, .contact_btn {
    display: none;
  }

   .menu-toggle {
    display: flex;
  }
}

.hero-section {
  background-color: #1D1C48;
  background-image: url("./assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-subtitle {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1.29em;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-title {
  font-weight: 900;
  font-size: 100px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 20px;
}

.hero-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 137%;
  color: #c9c9c9;
  max-width: 500px;
  margin-bottom: 25px;
}

.hero-note {
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
}

.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 0.8em;
  }

  .hero-desc {
    margin: 0 auto 25px;
  }

  .hero-image img {
    max-width: 420px;
    bottom: 0;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 45px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .btn-gradient {
    font-size: 13px;
    padding: 10px 22px;
  }
}



.feature-cards {
  padding: 50px 0;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  color: #fff;
  display: flex;
  align-items: anchor-center;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
  min-height: 222px;
}

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

.card-1 {
  background: url("./assets/images/cactus-bg.png") center/cover no-repeat;
}
.card-2 {
   background: url("./assets/images/bike-bg.png") center/cover no-repeat;
}
.card-3 {
  background: url("./assets/images/eagle-bg.png") center/cover no-repeat;
}

.card-content {
  z-index: 2;
  max-width: 240px;
}

.card-content h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.card-content p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}

.card-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

.card-image img {
  width: 120px;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .cards-wrapper {
    gap: 20px;
  }

  .feature-card {
    max-width: 100%;
  }

  .card-image img {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 420px;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .card-content {
    max-width: 180px;
  }

  .card-image img {
    width: 100px;
  }
}


.slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
  padding-bottom: 10px;
}

.slot-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 137%;
  color: #fff;
}

.slot-more {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #7b6df0;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: color 0.3s ease;
}

.slot-more:hover {
  color: #a396ff;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.slot-item {
  display: block;
  background: #272563;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.slot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.slot-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .slot-title {
    font-size: 30px;
  }

  .slot-more {
    font-size: 14px;
  }

  .slot-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }
}


.purchase-section{
  padding: 50px 0px;
}

.purchase-wrap {
  background: url("./assets/images/purchase-bg.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-radius: 20px;
}

.purchase-content {
  flex: 1 1 500px;
  padding: 30px;
}

.purchase-title {
  font-weight: 400;
  font-size: 80px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 20px;
}

.purchase-title span {
  color: #584ac5;
  font-weight: 900;
}

.purchase-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 137%;
  color: #c9c9c9;
  margin-bottom: 30px;
}


.purchase-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.purchase-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media (max-width: 991px) {
  .purchase-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .purchase-content {
    flex: 1 1;
    padding: 30px;
  }

  .purchase-title {
    font-size: 72px;
  }

  .purchase-image img {
    margin-top: 40px;
    max-width: 320px;
  }
}

@media (max-width: 575px) {
  .purchase-title {
    font-size: 52px;
  }

}


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

.access-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.access-item h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 137%;
  color: #ffffff;
  margin-bottom: 10px;
}

.access-item span {
  color: #584ac5;
  font-weight: 700;
}

.access-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #c9c9c9;
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  color: #9e46c1; 
}

.highlight2 {
  color: #7b6df0; 
}

.highlight3 {
  color: #5fdaa5; 
}

@media (max-width: 768px) {
  .access-item h3 {
    font-size: 26px;
  }

  .access-item p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .access-section {
    padding: 60px 0;
  }

  .access-item h3 {
    font-size: 22px;
  }

  .access-item p {
    font-size: 14px;
  }
}


.faq-section {
  padding: 50px 0;
}

.faq-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 137%;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 25px;
}

.faq-question h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 153%;
  color: #594cc7;
  margin: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #becdff;
  margin: 0px 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon svg {
  width: 12px;
  height: 1px;
}

.faq-item.active .faq-icon svg path {
  d: path("M0.5 0.5H11.5");
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 32px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}


.play-anywhere-section {
  padding-bottom: 50px;
  text-align: center;
}

.section-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 137%;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0 0;
}

.section-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #becdff;
  max-width: 700px;
  margin: 0 auto 60px;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: start;
}

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

.device-item h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 153%;
  color: #594cc7;
  margin-bottom: 10px;
}

.device-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #becdff;
}

@media (max-width: 991px) {
  .device-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-desc {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .device-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }



  .device-item h4 {
    font-size: 16px;
  }

  .device-item p {
    font-size: 14px;
  }
}



.footer-section {
  background: #272652;
  padding: 60px 0 30px;
  color: #fff;
  text-align: center;
}

.footer-logo img {
  max-width: 160px;
}

.footer-line {
  width: 90%;
  max-width: 700px;
  height: 1px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px auto;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-menu a {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-menu a:hover {
  color: #7b6df0;
}

.footer-disclaimer{
  text-align: center;
  margin: 0 auto;
}
.footer-disclaimer h6 {
  font-weight: 400;
  font-size: 16px;
  color: #becdff;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  margin-top: 30px;
  text-transform: uppercase;
}

.footer-disclaimer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 179%;
  color: #becdff;
  max-width: 700px;
  margin: 0 auto 30px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  align-items: center;
}

.footer-icons img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: 0.3s ease;
}

.footer-icons img:hover {
  opacity: 1;
}

.footer-copy p {
  font-weight: 400;
  font-size: 13px;
  color: #becdff;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer-menu {
    gap: 15px;
  }

  .footer-disclaimer p {
    font-size: 12px;
    padding: 0 20px;
  }
}


.text-section .text-content{
  font-weight: 400;
font-size: 18px;
line-height: 200%;
color: #fff;
padding: 50px 0;
}


.contact-section {
  padding: 50px 0;
  background: transparent;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #272652;
  border: none;
  outline: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #fff;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #272652;
  box-shadow: 0 0 0 1px #ffd13b;
}

.contact_form_submit{
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-form {
    gap: 15px;
  }

   .hero{
    padding-bottom: 0px;
  }

   .features {
    margin-top: -10px !important;
  }

}

@media (max-width: 890px) {
 
  .features {
    margin-top: -50px;
  }

}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }
}


.contact_success{
  text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.single-game-section {
  padding: 50px 0;
  background: var(--color-primary)
}

.game-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}


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

}

.game-iframe-wrapper {
  width: 100%;
  max-width: 100%;
  background: #695fda;
  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-title {
    font-size: 32px;
  }

  .game-iframe-wrapper iframe {
    height: 550px;
  }
}

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

  .game-title {
    font-size: 28px;
  }

  .game-iframe-wrapper iframe {
    height: 450px;
  }
}

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

  .game-title {
    font-size: 24px;
  }

  .game-iframe-wrapper iframe {
    height: 350px;
  }
}


.current_page_item  a{
  color: #5446c1 !important;
}


.age-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 5, 20, 0.92);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.age-modal.active {
  opacity: 1;
  visibility: visible;
}

.age-modal__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,190,96,0.1), transparent);
}

.age-modal__content {
  position: relative;
  z-index: 2;
  background: #1D1C48;
  border: 2px solid rgba(0,190,96,0.3);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  max-width: 480px;
  color: #fff;
  box-shadow: 0 0 40px #695fda;
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.age-modal__logo {
  max-width: 120px;
  margin: 0 auto 25px auto;
}

.age-modal__text {
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 35px;
}



.cookie-bar {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background: #695fda;
  border-top: 2px solid rgba(0,190,96,0.3);
  color: #fff;
  padding: 20px 0;
  z-index: 9998;
  box-shadow: 0 -5px 30px rgba(0,190,96,0.15);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.cookie-bar.active {
  opacity: 1;
  transform: translateY(0);
  bottom: 0;
}

.cookie-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-bar__text {
  flex: 1;
  font-size: 15px;
  color: #fff;
}

.cookie-bar__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-btn.accept {
  background: linear-gradient(0deg, #695fda 0%, #5446c1 100%);
  color: #fff;
  box-shadow: 0 0 10px #695fda;
}


.cookie-btn.decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.cookie-btn.decline:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-link {
  color: #00be60;
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .cookie-bar__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-bar__actions {
    justify-content: center;
  }
}

