.game-landing {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.game-landing *, .game-landing *::before, .game-landing *::after {
  box-sizing: border-box;
}

.game-landing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.game-landing .hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.game-landing .hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.game-landing .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.game-landing .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  padding: 0 2rem;
}

.game-landing .hero-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  line-height: 1.2;
  background: linear-gradient(135deg, #2196F3, #9B59B6, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.game-landing .hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0.95;
}

.game-landing .store-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.game-landing .store-btn {
  height: 60px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.game-landing .store-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Game Info Section */
.game-landing .game-info {
  padding: 5rem 0;
  background: transparent;
}

.game-landing .game-info-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.game-landing .character-video-wrapper {
  flex: 1;
  max-width: 550px;
}

.game-landing .character-video {
  width: 100%;
  height: auto;
  display: block;
}

.game-landing .game-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.game-landing .game-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.game-landing .bounce {
  animation: bounce 2s ease-in-out infinite;
}

.game-landing .game-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2196F3;
  line-height: 1.2;
}

.game-landing .game-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-landing .game-description p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* Game Highlights Section */
.game-landing .game-highlights {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.game-landing .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #2196F3;
}

.game-landing .section-title-white {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.game-landing .highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.game-landing .highlight-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-landing .highlight-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.game-landing .highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.game-landing .highlight-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2196F3;
  margin-bottom: 0.5rem;
}

.game-landing .highlight-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Features Section */
.game-landing .features {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2196F3, #9B59B6);
  position: relative;
  overflow: hidden;
}

.game-landing .features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

.game-landing .features .container {
  position: relative;
  z-index: 2;
}

.game-landing .features-content {
  display: flex;
  gap: 4rem;
  align-items: stretch;
}

.game-landing .feature-image-wrapper {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.game-landing .feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-landing .feature-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.game-landing .feature-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.8rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-landing .feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.game-landing .feature-item h3 {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  font-weight: 600;
}

/* How to Play Section */
.game-landing .how-to-play {
  padding: 5rem 0;
  background: white;
}

.game-landing .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.game-landing .step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-landing .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.game-landing .step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2196F3, #9B59B6);
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.game-landing .step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #2196F3;
  font-weight: 700;
}

.game-landing .step p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Screenshots Section */
.game-landing .screenshots {
  padding: 5rem 0;
  background: #f8f9fa;
}

.game-landing .screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.game-landing .screenshots-grid a {
  display: block;
  cursor: pointer;
}

.game-landing .screenshot-img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-landing .screenshot-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Reviews Section */
.game-landing .reviews {
  padding: 5rem 0;
  background: white;
}

.game-landing .reviews-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.game-landing .review-card {
  background: #f8f9fa;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
  max-width: 400px;
  border: 2px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-landing .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.game-landing .store-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2196F3;
  margin-bottom: 1.5rem;
}

.game-landing .rating-display {
  margin-bottom: 1rem;
}

.game-landing .rating-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFC107;
}

.game-landing .review-count {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.game-landing .view-store-link {
  display: inline-block;
  color: #2196F3;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.game-landing .view-store-link:hover {
  color: #9B59B6;
}

/* FAQ Section */
.game-landing .faq {
  padding: 5rem 0;
  background: #f8f9fa;
}

.game-landing .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.game-landing .faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.game-landing .faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.game-landing .faq-question:hover {
  background: #f8f9fa;
  color: #2196F3;
}

.game-landing .faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2196F3;
  transition: transform 0.3s ease;
}

.game-landing .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.game-landing .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.game-landing .faq-item.active .faq-answer {
  max-height: 500px;
}

.game-landing .faq-answer p {
  padding: 0 2rem 1.5rem 2rem;
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* Final CTA Section */
.game-landing .final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2196F3, #9B59B6);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.game-landing .final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

.game-landing .final-cta .container {
  position: relative;
  z-index: 2;
}

.game-landing .cta-icon {
  width: 120px;
  height: 120px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  margin: 0 auto 2rem;
  display: block;
}

.game-landing .cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
  .game-landing .hero-title {
    font-size: 2.5rem;
  }

  .game-landing .hero-tagline {
    font-size: 1.2rem;
  }

  .game-landing .game-info-container {
    flex-direction: column;
    gap: 3rem;
  }

  .game-landing .character-video-wrapper {
    max-width: 100%;
  }

  .game-landing .highlights-grid {
    grid-template-columns: 1fr;
  }

  .game-landing .features-content {
    flex-direction: column;
    gap: 3rem;
  }

  .game-landing .feature-image {
    aspect-ratio: 16/9;
  }

  .game-landing .steps-grid {
    grid-template-columns: 1fr;
  }

  .game-landing .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .game-landing .reviews-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .game-landing .hero-title {
    font-size: 2rem;
  }

  .game-landing .hero-tagline {
    font-size: 1rem;
  }

  .game-landing .store-btn {
    height: 50px;
  }

  .game-landing .section-title, .game-landing .section-title-white {
    font-size: 2rem;
  }

  .game-landing .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .game-landing .game-title {
    font-size: 2rem;
  }

  .game-landing .cta-title {
    font-size: 1.8rem;
  }
}
/* Lightbox slideshow */
.game-landing .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;
}

.game-landing .lightbox:target {
  opacity: 1;
  visibility: visible;
}

.game-landing .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;
}

.game-landing .lightbox-img,
.game-landing .lightbox-close,
.game-landing .lightbox-arrow {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.game-landing .lightbox-img {
  max-width: 90%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 8px;
}

.game-landing .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;
}

.game-landing .lightbox-close:hover {
  opacity: 0.7;
}

.game-landing .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;
}

.game-landing .lightbox-arrow:hover {
  opacity: 0.7;
}

.game-landing .lightbox-arrow.left {
  left: 20px;
}

.game-landing .lightbox-arrow.right {
  right: 20px;
}

.game-landing .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;
}

.game-landing #lightbox-1:target ~ .lightbox-thumbnails,
.game-landing #lightbox-2:target ~ .lightbox-thumbnails,
.game-landing #lightbox-3:target ~ .lightbox-thumbnails,
.game-landing #lightbox-4:target ~ .lightbox-thumbnails {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.game-landing #lightbox-1:target ~ .lightbox-thumbnails [data-for="1"],
.game-landing #lightbox-2:target ~ .lightbox-thumbnails [data-for="2"],
.game-landing #lightbox-3:target ~ .lightbox-thumbnails [data-for="3"],
.game-landing #lightbox-4:target ~ .lightbox-thumbnails [data-for="4"] {
  opacity: 1;
  border-color: white;
}

.game-landing .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;
}

.game-landing .lightbox-thumb:hover {
  opacity: 0.8;
}

.game-landing .lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
