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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 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;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00FF66, #00D4FF, #8B3FD9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-btn {
  height: 60px;
  transition: transform 0.3s ease;
}

.store-btn:hover {
  transform: scale(1.05);
}

/* Game Info Section */
.game-info {
  padding: 80px 0;
  background: transparent;
}

.game-info-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.character-video-container {
  flex: 1;
  max-width: 550px;
}

.character-video {
  width: 100%;
  height: auto;
}

.game-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.game-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.game-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00FF66, #8B3FD9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-description {
  margin-bottom: 2rem;
}

.game-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #555;
}

/* Game Highlights Section */
.game-highlights {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #222;
}

.section-title-white {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: white;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.highlight-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  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: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00FF66, #8B3FD9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-label {
  font-size: 1rem;
  color: #666;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, #00FF66, #8B3FD9);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.features-content {
  display: flex;
  gap: 4rem;
  align-items: stretch;
}

.feature-image-container {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 20px;
  box-shadow: 0 20px 50px 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.95);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.feature-item p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* How to Play Section */
.how-to-play {
  padding: 80px 0;
  background: white;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  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, #00FF66, #8B3FD9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.step p {
  font-size: 0.95rem;
  color: #666;
}

/* Screenshots Section */
.screenshots {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.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: 9/16;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: white;
}

.ratings-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.rating-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
}

.store-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

.star-rating {
  font-size: 3rem;
  font-weight: 800;
  color: #FFD700;
  display: block;
  margin-bottom: 1rem;
}

.review-count {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.view-store {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #00FF66, #8B3FD9);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.view-store:hover {
  transform: scale(1.05);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  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: 300;
  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;
  color: #555;
  line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #00FF66, #8B3FD9);
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 120px;
  height: 120px;
  border-radius: 25px;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 3rem;
  }

  .game-info-content {
    flex-direction: column;
  }

  .character-video-container {
    max-width: 100%;
  }

  .game-details {
    align-items: center;
    text-align: center;
  }

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

  .features-content {
    flex-direction: column;
  }

  .feature-image {
    aspect-ratio: 16/9;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .ratings-container {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .section-title,
  .section-title-white {
    font-size: 2rem;
  }

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

  .store-buttons {
    flex-direction: column;
  }

  .store-btn {
    height: 50px;
  }
}