/*!
Theme Name: Spin Lora
*/

@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;700;900&family=Tilt+Warp&display=swap');

:root {
  --font-family: "Gabarito", sans-serif;
  --second-family: "Tilt Warp", sans-serif;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

.main_hero {
  background: url('./assets/images/hero_bg.png') no-repeat center center/cover;
  color: #fff;
}

.main-header {
  background: url('./assets/images/hero_bg.png') no-repeat center center/cover;
  color: #fff;
}

.header-menu .nav-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff !important;
  text-decoration: none;
}

.header-menu .nav-link:hover {
  opacity: 0.8;
}



.navbar-toggler {
  background-color: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.offcanvas {
  background: #1f2130;
  color: #fff;
  width: 280px;
  border-left: 2px solid #eb5290;
  transition: all 0.3s ease;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
}

.offcanvas-body {
  padding: 2rem 1rem;
}

.mobile-menu .nav-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.mobile-menu .nav-link:hover {
  color: #eb5290;
  transition: 0.3s ease;
}

.btn-close-white {
  filter: invert(1);
}

@media (max-width: 991px) {
  .header-menu {
    display: none !important;
  }
}
.btn {
  background: #000;
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  color: #fff;
  border: none;
  text-transform: uppercase;
  border-radius: 100px;
}

.btn:hover{
  color: #000;
  background: #fff;
  border-color: #eb5290;
}


.hero-section {
  color: #fff;
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.94em;
  color: #ff9d00;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 96px;
  line-height: 100%;
  letter-spacing: -0.06em;
  text-align: center;
  color: #fff;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.hero-number {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 37px;
  color: #252733;
}

.hero-label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.hero_content{
	margin: 0 auto;
	max-width: 750px;
}

@media (max-width: 1390px) {
  .hero-title {
    font-size: 65px;
  }

  .hero_content{
    max-width: 490px;
  }
}

.emojis {
  position: absolute;
  max-width: 230px;
}
.emoji-top-left { top: 3%; left: 0%; }
.emoji-top-right { top: 0%; right: 0%; }
.emoji-bottom-left { bottom: -20%; left: 0%; }
.emoji-bottom-right { bottom: -16%; right: 0%; }

.game-section {
  background: #1f2130;
  padding: 70px 0;
  color: #fff;
  margin-top: 160px;
  position: relative;
}

.game-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 32px;
  line-height: 100%;
  text-transform: uppercase;
}

.game-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 190%;
  color: #b8bac6;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: absolute;
  top: -150px;
}

.game-card img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s;
}

.game-card img:hover {
  transform: scale(1.05);
}


@media (max-width: 991px) {
  .hero-title {
    font-size: 60px;
  }
  .emojis {
    display: none;
  }
  .game-grid {
    grid-template-columns: 1fr 1fr 1fr;
    top: 0px;
    position: unset;
  }
  .game-section{
	margin-top: 0px;
  }
}

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

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

}

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

}



.no-purchase-section {
  background: #dfdfdf;
  padding: 100px 0;
}

.no-purchase-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 123px;
  line-height: 70%;
  letter-spacing: -0.06em;
  color: #252733;
}

.no-purchase-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #a2a2a2;
  max-width: 450px;
}

.no-purchase-section .play-btn {
  background: #eb5290;
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.06em;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  border: none;
}


.no-purchase-img {
  max-width: 400px;
  height: auto;
  width: 100%;
}


@media (max-width: 1200px) {
  .no-purchase-title {
    font-size: 90px;
    line-height: 80%;
  }
}

@media (max-width: 991px) {
  .no-purchase-title {
    font-size: 70px;
    line-height: 90%;
    text-align: center;
  }
  .no-purchase-desc {
    text-align: center;
    margin: 0 auto;
  }
  .no-purchase-section .play-btn {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .no-purchase-title {
    font-size: 52px;
    line-height: 95%;
  }
  .no-purchase-section {
    padding: 60px 0;
  }

  .no-purchase-img {
		display: none;
	}
}


.faq-section {
  background: #eb5290;
  padding: 70px 0;
}

.faq-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 60px;
  line-height: 90%;
  letter-spacing: -0.06em;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

.faq-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  text-align: center;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 60px;
}


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


.faq-item {
  background: #1f2130;
  border-radius: 18px;
  padding: 29px 47px 29px 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}


.faq-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  display: none;
}

.faq-item.active .faq-icon .open {
  display: block;
}
.faq-item:not(.active) .faq-icon .close {
  display: block;
}

.faq-question {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 22px;
  line-height: 135%;
  color: #fff;
  margin: 0;
}


.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding-left: 44px; 
}

.faq-item.active .faq-body {
  margin-top: 15px;
  max-height: 500px;
}

.faq-body p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 166%;
  color: #fff;
  margin: 0;
}


@media (max-width: 991px) {
  .faq-title {
    font-size: 46px;
  }
  .faq-item {
    padding: 25px;
  }
  .faq-body {
    padding-left: 25px;
  }
}

@media (max-width: 575px) {
  .faq-title {
    font-size: 34px;
  }
  .faq-question {
    font-size: 18px;
  }
  .faq-body p {
    font-size: 15px;
  }
}

.why-section {
  background: #dfdfdf;
  padding: 70px 0;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 60px;
  line-height: 90%;
  letter-spacing: -0.06em;
  text-align: center;
  color: #1f2130;
}

.section-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  text-align: center;
  color: #1f2130;
  margin-bottom: 80px;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


.why-box {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #1f2130;
  border-radius: 15px;
  box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.why-image img {
  max-width: 100px;
}

.why-content h3 {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.06em;
  color: #eb5290;
  margin-bottom: 10px;
}

.why-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #8c8c8c;
  margin: 0;
}


.how-section {
  background: #1f2130;
  padding: 70px 0;
  color: #fff;
  text-align: center;
}

.how-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 60px;
  line-height: 90%;
  letter-spacing: -0.06em;
  color: #fff;
  margin-bottom: 15px;
}

.how-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #fff;
  margin-bottom: 80px;
}


.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.how-step {
  background: #fff;
  border-radius: 15px;
  padding: 60px 30px 40px;
  position: relative;
}

.how-number {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.06em;
  color: #fff;
  background: #eb5290;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
      position: absolute;
    top: -25px;
    left: 45%;
}

.how-step h3 {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.06em;
  color: #eb5290;
  margin-bottom: 10px;
}

.how-step p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #8c8c8c;
  margin: 0;
}


@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-box {
    flex-direction: column;
    text-align: center;
  }
  .why-image img {
    margin-bottom: 15px;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .section-title, .how-title {
    font-size: 42px;
  }
  .why-grid, .how-grid {
    grid-template-columns: 1fr;
  }
  .why-box {
    padding: 25px;
  }
}


.site-footer {
  background: #dfdfdf;
  padding: 80px 0 40px;
}

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

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-menu a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #000;
  text-decoration: none;
}

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

.footer-disclaimer h4 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-disclaimer p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 179%;
  text-align: center;
  color: #000;
  max-width: 800px;
  margin: 0 auto 20px;
}

.footer-icons img {
  margin: 0 10px;
}

.footer-copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 179%;
  text-align: center;
  color: #000;
}


body:not(.home) .emoji-bottom-left {
   bottom: 0%;
   left: 0%;
}
body:not(.home) .emoji-bottom-right {
   bottom: 0%;
   right: 0%;
}


.games-grid-section {
  background: #1f2130;
  padding: 70px 0;
}

.games-grid-title {
  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;
}

.games-grid-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  text-align: center;
  color: #b8bac6;
  max-width: 600px;
  margin: 0 auto 60px;
}


.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.game-item {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-item img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.game-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .games-grid-title {
    font-size: 36px;
  }
}



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


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

  .text-content p {
    font-size: 15px;
    line-height: 220%;
  }

}


.contact-section {
  background: #fff;
  padding: 120px 0;
}

.contact-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 60px;
  line-height: 90%;
  letter-spacing: -0.06em;
  text-align: center;
  color: #1f2130;
  margin-bottom: 15px;
}

.contact-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  text-align: center;
  color: #1f2130;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #dfdfdf;
  border: none;
  border-radius: 10px;
  padding: 18px 20px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: #000;
  outline: none;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #000;
  opacity: 0.6;
}

.btn-submit {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  letter-spacing: -0.06em;
  padding: 14px 60px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s ease;
}

.btn-submit:hover {
  opacity: 0.85;
}


@media (max-width: 575px) {
  .contact-title {
    font-size: 42px;
  }
  .btn-submit {
    width: 100%;
  }
}






.modal-backdrop.show {
  opacity: 0.9;
  background: radial-gradient(circle at center, rgba(31,33,48,0.95) 0%, rgba(0,0,0,0.98) 100%);
}


.age-modal-content {
  background: #1f2130;
  border-radius: 25px;
  border: 2px solid #eb5290;
  color: #fff;
  text-align: center;
  padding: 60px 40px;
  max-width: 500px;
  margin: 0 auto;
  animation: modalPop 0.4s ease-out;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
}


@keyframes modalPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.age-modal-content .modal-logo {
  max-width: 120px;
  margin: 0 auto 25px auto;
}


.age-modal-content .modal-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #fff;
  margin-bottom: 35px;
}


.btn-age-confirm {
  background: #eb5290;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  padding: 14px 60px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-age-confirm:hover {
  background: #ff72ad;
  transform: translateY(-2px);
}


@media (max-width: 575px) {
  .age-modal-content {
    padding: 40px 25px;
    border-radius: 18px;
  }
  .age-modal-content .modal-text {
    font-size: 16px;
  }
  .btn-age-confirm {
    width: 100%;
    padding: 14px 0;
  }
}



.cookie-bar {
  position: fixed;
  bottom: -150px; 
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(31, 33, 48, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  color: #fff;
  transition: all 0.5s ease;
  opacity: 0;
}

.cookie-bar.active {
  bottom: 30px;
  opacity: 1;
}


.cookie-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}


.btn-cookie {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.03em;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}


.btn-accept {
  background: #eb5290;
  color: #fff;
}

.btn-accept:hover {
  background: #ff72ad;
  transform: translateY(-2px);
}


.btn-decline {
  background: transparent;
  border: 1px solid #eb5290;
  color: #eb5290;
}

.btn-decline:hover {
  background: #eb5290;
  color: #fff;
}


.cookie-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
  color: #fff;
  opacity: 0.8;
}

.cookie-link:hover {
  opacity: 1;
  color: #ff72ad;
}


@media (max-width: 767px) {
  .cookie-bar {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .cookie-text {
    margin-bottom: 15px;
  }

  .cookie-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-cookie {
    width: 100%;
  }

  .cookie-link {
    display: block;
    margin-top: 8px;
  }
}


.page-template-page-contact .emojis , .page-template-page-about .emojis{
  max-width: 170px;
}



.single-game-section {
  padding: 50px 0;
}

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

.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: #252733;
  margin-bottom: 15px;
}

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

.game-iframe-wrapper {
  width: 100%;
  max-width: 100%;
  background: #252733;
  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;
  }
}

.single-lists .emoji-bottom-left,
.single-lists .emoji-bottom-right{
    display: none;
}