/*!
Theme Name: stickyjoker
*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Tilt+Neon&family=Tilt+Warp&display=swap');

:root {
  --font-family: "Jost", sans-serif;
  --second-family: "Lato", sans-serif;
  --third-family: "Tilt Warp", sans-serif;
  --four-family: "Tilt Neon", sans-serif;
  --orange: #faa551;
  --green-light: #15b200;
  --green-dark: #0d7100;
  --white-light: #fff;
}

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


.btn-orange {
  background: #faa551;
  color: var(--white-light);
  font-weight: 900;
  border-radius: 10px;
  text-decoration: none;
  font-size: 20px;
  padding: 8px 20px;
  box-shadow: 0 4px 15px 3px rgba(0, 0, 0, 0.25);
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-orange:hover {
  transform: translateY(-2px);
}


.section-title {
  font-weight: 900;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: var(--white-light);
  margin-bottom: 20px;
  font-family: var(--third-family);
}

.section-title-green {
  font-weight: 900;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #129901;
  max-width: 500px;
  margin: 0 auto;

}

.section_heading {
  margin-bottom: 50px;
}

.section_heading .section-title-green {
  text-align: center;
  margin: 0 auto 20px;
}

.section-desc {
  font-family: var(--four-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: var(--white-light);
}

.section-desc-green {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #c9c9c9;
  margin: 0 auto;
  max-width: 350px;
  font-family: var(--second-family);

}

.section_heading .section-desc-green {
  text-align: center;
  max-width: max-content;
}

@media (max-width: 767px) {
  .section-title-green,
  .section-title {
    font-size: 34px;
  }
}

.top_bar{
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #000;
  padding: 10px;
  text-transform: uppercase;
  background: #fff;
}

.current_page_item a{
  color: #15b200 !important;
}

.menu-header-menu li a{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.navbar-collapse.show{
  background-color: #faa551;
  text-align: center;
}


.hero-wrap {
  background: radial-gradient(48.19% 48.19% at 78.51% 51.81%, #15b200 0%, #0d7100 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-img {
  width: 100%;
  position: relative;
}

.hero_subtitle{
  font-weight: 300;
  font-size: 50px;
  letter-spacing: -0.06em;
}

.hero_title{
  font-weight: 900;
  font-size: 120px;
  letter-spacing: -0.06em;
  color: #fff;
  line-height: 85%;
}

.hero_description{
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.06em;
  color: #f6f6f6;
}

@media (max-width: 1400px) {
  .hero_title{
    font-size: 110px;
  }
}

@media (max-width: 1200px) {
  .hero_title{
    font-size: 80px;
  }
}


@media (max-width: 991px) {
  .hero-img {
   display: none;
  }

  .hero-wrap h1 {
    font-size: 60px !important;
  }

  .hero_main{
    padding-bottom: 30px;
  }

  .btn_contact{
    display: none;
  }

}


.feature-section {
  margin-top: -100px;
  padding-top: 130px;
  z-index: 99;
}

.feature-card {
  box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.feature_title{
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.06em;
  color: #fc8e2d;
}

.feature_description{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #8c8c8c;
}


@media (max-width: 991px) {
  .feature-section{
    margin-top: 0px;
  }
}

.game-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

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

.game-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.no-purchase-section {
  background: url("./assets/images/orange-bg.png"), linear-gradient(180deg, #fda732 0%, #fc8e2d 100%);
  background-size: cover;
  background-position: center;
  color: var(--white-light);
}

.no-purchase-title {
  font-weight: 900;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -0.06em;
}

.no-purchase-desc {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  max-width: 500px;
  line-height: 1.6;
  color: #f6f6f6;
}

.no-purchase-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {

  .no-purchase-section,
  .blue-info {
    padding: 50px;
  }

  .no-purchase-title {
    font-size: 40px;
    text-align: center;
  }

  .no-purchase-desc {
    font-size: 15px;
    text-align: center;
  }

  .no-purchase-img {
    max-width: 350px;
  }
}

.counter-section {
  padding: 150px;
}

.counter-number {
  font-weight: 900;
  font-size: 60px;
  color: #129901;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.counter-label {
  font-weight: 400;
  font-size: 20px;
  color: #c9c9c9;
  margin: 0;
}

@media (max-width: 991px) {
  .counter-number {
    font-size: 36px;
  }

  .counter-section {
    padding: 60px;
  }
}

.faq-section {
 background: radial-gradient(47.46% 47.46% at 52.64% 52.54%, #15b200 0%, #0d7100 100%);
  padding: 100px 0;
}

.faq-heading {
  margin-bottom: 50px;
}

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

.faq-item {
  background: #ff9e01;
  border-radius: 18px;
  padding: 29px 47px 29px 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  color: var(--white-light);
}

.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-weight: 900;
  font-size: 20px;
  line-height: 135%;
  margin: 0;
}

.faq-body {
  overflow: hidden;
  transition: all 0.4s ease;
  padding-left: 35px;
  text-align: start;
  font-weight: 400;
  font-size: 17px;
  line-height: 166%;
  max-height: 0px;
  margin: 0;
}

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


@media (max-width: 991px) {
  .faq-title {
    font-size: 46px;
  }

  .faq-item {
    padding: 25px;
  }

  .faq-body {
    padding-left: 25px;
  }
}

@media (max-width: 767px) {
  .faq-question {
    font-size: 18px;
  }

}

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

  .faq-question {
    font-size: 18px;
  }

  .faq-body p {
    font-size: 15px;
  }
}


.how-it-works{
  padding: 100px 0px;
}
.step-box {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.step-number-box {
  background: #faa551;
  width: 50px;
  min-height: 100%;
}

.step-number {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 45px;
  letter-spacing: -0.06em;
  color: var(--white-light);
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 900;
  font-size: 20px;
  color: #fc8e2d;
}

.step-desc {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #8c8c8c;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .step-number-box {
    width: 60px;
  }

  .step-number {
    font-size: 24px;
  }
}

.blue-info {
  background: linear-gradient(180deg, #0098ff 0%, #0074d9 100%);
}

.blue-info img {
  max-width: 400px;
}



.footer-section .nav-link {
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.footer-section .footer-disclaimer p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  max-width: 600px;
  line-height: 179%;
  margin-bottom: 20px;

}

.footer-section .footer-disclaimer h4 {
  font-size: 15px;
  line-height: 200%;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-copy {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  opacity: 0.7;
  text-align: center;
}



.text-section {
  padding: 50px;
}

.text-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 250%;
  color: #8c8c8c;
}

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

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

}


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

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #9d9d9d;
  border: none;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  outline: none;
  resize: none;
}

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


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

}


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

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

.game-title-single {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.06em;
  text-align: center;
  color: #000;
  margin-bottom: 15px;
}

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

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



.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: #0d7100;
  border-radius: 25px;
  border: 2px solid #faa551;
  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-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #fff;
  margin-bottom: 35px;
}

.btn-age-confirm {
  background: #faa551;
  color: #fff;
  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: #15b200;
  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:#faa551;
  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-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

.btn-cookie {
  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: #0d7100;
  color: #fff;
}

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

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

.btn-decline:hover {
  background: #15b200;
  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;
  }
}
