@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');

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

ul {
  list-style-type: none;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #180808;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

.ljp-btn {
  font-family: "Aclonica", sans-serif;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  border-radius: 12px;
  background: linear-gradient(180deg, #59B31F 0%, #3F7B18 100%);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  transition: .3s;
}

.ljp-btn:hover {
  box-shadow: 0 4px 20px rgba(90, 179, 31, 0.6);
}

.ljp-header {
  background: linear-gradient(180deg, #693309 0%, #2F1900 100%);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ljp-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ljp-logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #FFDF2A;
}

.ljp-nav {
  display: flex;
  gap: 30px;
}

.ljp-nav-link {
  color: #FFDF2A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ljp-nav-link.active {
  color: #ffffff;
}

.ljp-nav-link:hover {
  color: #ffffff;
}

.ljp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.ljp-burger-line {
  width: 25px;
  height: 3px;
  background-color: #FFDF2A;
  transition: all 0.3s ease;
}

.ljp-burger.active .ljp-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.ljp-burger.active .ljp-burger-line:nth-child(2) {
  opacity: 0;
}

.ljp-burger.active .ljp-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.ljp-mobile-menu {
  display: none;
  background-color: #180808;
  flex-direction: column;
  padding: 20px;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.ljp-mobile-menu.active {
  display: flex;
}

.ljp-mobile-link {
  color: #FFDF2A;
  text-decoration: none;
  padding: 12px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.ljp-mobile-link.active {
  color: #ffffff;
}

.ljp-mobile-link:hover {
  background-color: rgba(244, 208, 63, 0.1);
}

.ljp-hero {
  position: relative;
  background-image: url(../images/ljp-hero-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 20px;
  overflow: hidden;
}

.ljp-hero-container {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.ljp-hero-title {
  font-family: "Aclonica", sans-serif;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.ljp-hero-highlight {
  color: #FFDF2A;
}

.ljp-hero-panel {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ljp-game-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #693309 0%, #2F1900 100%);
}

.ljp-game-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ljp-game-frame {
  background: linear-gradient(180deg, #693309 0%, #2F1900 100%);
  border: 1px solid #FFDF2A33;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0px 10px 40px 0px #0000004D;
}

.ljp-game-frame-play {
  display: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s ease, transform .35s ease;
  margin-top: 32px;
}

.ljp-game-frame-play.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ljp-game-frame iframe {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}

.ljp-age-warning {
  color: #FF7299;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.ljp-features-section {
  padding: 90px 20px 84px;
}

.ljp-features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.ljp-feature-card {
  background: linear-gradient(180deg, #693309 0%, #2F1900 100%);
  border: 1px solid #603300;
  border-radius: 12px;
  padding: 0 28px 28px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ljp-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(244, 208, 63, 0.3);
}

.ljp-feature-icon {
  margin-top: -70px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 180px;
}

.ljp-icon-coin {
  background: radial-gradient(circle at 30% 30%, #ffd700 0%, #f4a400 100%);
  position: relative;
}

.ljp-why-section {
  padding: 64px 20px 84px;
  background: linear-gradient(180deg, #693309 0%, #2F1900 100%);
}

.ljp-why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ljp-section-title {
  font-family: "Aclonica", sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}

.ljp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.ljp-why-card {
  background: #18080880;
  border-radius: 12px;
  padding: 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ljp-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.ljp-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ljp-why-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #FFDF2A;
  line-height: 1.3;
}

.ljp-contacts-section {
  padding: 64px 20px 84px;
}

.ljp-contacts-section .ljp-why-card {
  background: linear-gradient(180deg, #693309 0%, #2F1900 100%);
  border: 1px solid #603300;
  text-align: center;
}

.ljp-contacts-section .ljp-why-box {
  width: 100%;
}

.ljp-contacts-section .ljp-why-title {
  font-family: "Aclonica", sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.ljp-contacts-section .ljp-why-desc {
  font-size: 20px;
}

.ljp-contacts-section .ljp-why-link {
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
}

.ljp-footer {
  background-color: #180808;
}

.ljp-footer-bar {
  padding: 64px 0 0;
}

.ljp-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.ljp-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #FFDF2A;
}

.ljp-footer-links {
  display: flex;
  gap: 20px 32px;
  flex-wrap: wrap;
}

.ljp-footer-link {
  color: #FFDF2A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ljp-footer-link.active {
  color: #ffffff;
}

.ljp-footer-link:hover {
  color: #ffffff;
}

.ljp-footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ljp-footer-disclaimer {
  padding: 32px 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #FFDF2A33;
}

.ljp-disclaimer-box {
  background: linear-gradient(180deg, #378D00 0%, #1C4800 100%);
  border: 1px solid #328000;
  border-radius: 12px;
  padding: 34px;
}

.ljp-disclaimer-text {
  color: #ffffff;
  text-align: center;
}

.ljp-footer-copyright {
  padding: 24px 20px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.ljp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ljp-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Info */

.ljp-info-section {
  padding: 64px 20px 84px;
}

.ljp-info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ljp-info-section h1 {
  font-family: "Aclonica", sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}

.ljp-info-section h2 {
  font-family: "Aclonica", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
}

.ljp-info-section h3 {
  font-family: "Aclonica", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
}

.ljp-info-section p {
  margin-bottom: 14px;
}

.ljp-info-section a {
  text-decoration: none;
  color: #328000;
  font-weight: 600;
}

.ljp-info-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.ljp-info-section ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}

.ljp-info-section li + li {
  margin-top: 10px;
}

.ljp-description-section {
  padding: 64px 20px 84px;
}

.ljp-description-section .ljp-why-card {
  background: linear-gradient(180deg, #693309 0%, #2F1900 100%);
  border: 1px solid #603300;
  flex-direction: column;
  text-align: center;
}

.ljp-description-section .ljp-why-num {
  font-family: "Aclonica", sans-serif;
  font-size: 66px;
  line-height: 70px;
  font-weight: 400;
  color: #FFDF2A;
}

.ljp-description-section .ljp-why-grid {
  margin-bottom: 32px;
}

.ljp-testimonials-section {
  background: linear-gradient(180deg, #693309 0%, #2F1900 100%);
  padding: 64px 20px 84px;
}

.ljp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.ljp-testimonials-card {
  background: #18080880;
  padding: 28px;
  border-radius: 12px;
  text-align: center;
}

.ljp-testimonials-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #FFDF2A;
}


@media (max-width: 768px) {
  .ljp-nav {
    display: none;
  }

  .ljp-burger {
    display: flex;
  }

  .ljp-hero {
    padding: 80px 20px;
  }

  .ljp-hero-title {
    font-size: 28px;
  }

  .ljp-features-container {
    grid-template-columns: 1fr;
    gap: 86px;
  }

  .ljp-why-grid {
    grid-template-columns: 1fr;
  }

  .ljp-why-title {
    font-size: 20px;
  }

  .ljp-why-icon {
    min-width: 80px;
    width: 80px;
  }

  .ljp-why-icon img {
    width: 100%;
  }

  .ljp-why-section {
    padding: 44px 20px 60px;
  }

  .ljp-footer-bar {
    padding: 40px 0 0;
  }

  .ljp-footer-container {
    flex-direction: column;
    text-align: center;
  }

  .ljp-footer-links {
    justify-content: center;
  }

  .ljp-disclaimer-box {
    padding: 34px 24px;
  }

  .ljp-disclaimer-text {
    font-size: 14px;
  }

  .ljp-footer-copyright {
    font-size: 14px;
  }

  .ljp-contacts-section {
    padding: 44px 20px 60px;
  }

  .ljp-contacts-section .ljp-why-title {
    font-size: 24px;
  }

  .ljp-contacts-section .ljp-why-desc {
    font-size: 16px;
  }

  .ljp-description-section {
    padding: 44px 20px 60px;
  }

  .ljp-game-frame iframe {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .ljp-section-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .ljp-info-section h1 {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .ljp-game-frame iframe {
    height: 300px;
  }
}
