* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.game-landing {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #fff;
}

/* JLabs site header (sticky) */
.game-landing .hero {
  padding-top: 5rem;
  height: auto;
  min-height: calc(100vh - 5rem);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0066FF, #FF3333, #FFDD00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.store-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-btn {
  height: 60px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.store-btn:hover {
  transform: scale(1.05);
}

/* Game Info Section */
.game-info {
  padding: 6rem 0;
  background: transparent;
}

.game-info-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.character-video-wrapper {
  flex: 1;
  max-width: 550px;
}

.character-video {
  width: 100%;
  height: auto;
}

.game-details {
  flex: 1;
}

.game-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation: bounce 2s ease-in-out infinite;
}

.game-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #0066FF;
}

.game-description p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.game-details .store-buttons {
  margin-top: 2rem;
}

/* Game Highlights Section */
.game-highlights {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #0066FF;
}

.section-title-white {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.highlight-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: scale(1.05);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0066FF;
  margin-bottom: 0.5rem;
}

.highlight-label {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0066FF, #2B7A9B);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: flex;
  gap: 4rem;
  align-items: stretch;
}

.feature-image-wrapper {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.feature-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* How to Play Section */
.how-to-play {
  padding: 6rem 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #0066FF, #FF3333);
  color: white;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #0066FF;
}

.step p {
  font-size: 1rem;
  color: #666;
}

/* Screenshots Section */
.screenshots {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.screenshots-grid a {
  display: block;
  cursor: pointer;
}

.screenshot-img {
  width: 100%;
  aspect-ratio: 8/17;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.screenshot-img:hover {
  transform: scale(1.05);
}

/* Reviews Section */
.reviews {
  padding: 6rem 0;
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.review-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #e9ecef;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.store-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0066FF;
}

.rating-stars {
  font-size: 2rem;
  color: #FFDD00;
  margin-bottom: 0.5rem;
}

.rating-number {
  font-size: 3rem;
  font-weight: 800;
  color: #0066FF;
  margin-bottom: 0.5rem;
}

.review-count {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.view-store {
  display: inline-block;
  color: #0066FF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.view-store:hover {
  color: #FF3333;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0066FF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0066FF, #2B7A9B);
  text-align: center;
}

.cta-icon {
    width: 120px;
    height: 120px;
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .features-grid {
    flex-direction: column;
  }

  .feature-image-wrapper {
    width: 100%;
  }

  .feature-image {
    aspect-ratio: 16/9;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .store-btn {
    height: 50px;
  }

  .game-info-grid {
    flex-direction: column;
  }

  .character-video-wrapper {
    max-width: 100%;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .section-title-white {
    font-size: 2rem;
  }

  .game-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .store-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .store-btn {
    height: 45px;
  }
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

    .lightbox:target {
        opacity: 1;
        visibility: visible;
    }

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 0;
    cursor: default;
    pointer-events: auto;
}

.lightbox-img,
.lightbox-close,
.lightbox-arrow {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    z-index: 10;
}

    .lightbox-close:hover {
        opacity: 0.7;
    }

.lightbox-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    text-decoration: none;
    padding: 20px;
    user-select: none;
    transition: opacity 0.2s;
    z-index: 10;
}

    .lightbox-arrow:hover {
        opacity: 0.7;
    }

    .lightbox-arrow.left {
        left: 20px;
    }

    .lightbox-arrow.right {
        right: 20px;
    }

.lightbox-thumbnails {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}

#lightbox-1:target ~ .lightbox-thumbnails,
#lightbox-2:target ~ .lightbox-thumbnails,
#lightbox-3:target ~ .lightbox-thumbnails,
#lightbox-4:target ~ .lightbox-thumbnails {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

    #lightbox-1:target ~ .lightbox-thumbnails [data-for="1"],
    #lightbox-2:target ~ .lightbox-thumbnails [data-for="2"],
    #lightbox-3:target ~ .lightbox-thumbnails [data-for="3"],
    #lightbox-4:target ~ .lightbox-thumbnails [data-for="4"] {
        opacity: 1;
        border-color: white;
    }

.lightbox-thumb {
    width: 80px;
    height: 140px;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.4;
    transition: opacity 0.2s, border-color 0.2s;
    border: 2px solid transparent;
    display: block;
}

    .lightbox-thumb:hover {
        opacity: 0.8;
    }

    .lightbox-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.screenshots-grid a {
    display: block;
}