/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f4f4f4, #e0e0e0);
  color: #333;
}

.language-toggle {
  text-align: right;
  padding: 10px;
}

.language-toggle button {
  background: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
}

.hero, .astrology-tool, .game-highlights, .promo-section, .social-proof, .urgency-section {
  text-align: center;
  padding: 40px 20px;
}

.cta-button {
  background: #28a745;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin: 20px 0;
  font-size: 18px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #218838;
}

.hero-content, .tool-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-video iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-video {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.hero-video video {
  width: 89%; /* Match your inline width */
  max-width: 100%; /* Ensure it doesn't overflow */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero12 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.astrology-tool {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tool-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.game-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.game-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 80%;
}

.game-card img {
  max-width: 100%;
  border-radius: 10px;
}

.testimonials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

footer {
  background: #f8f8f8;
  color: #333;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer img {
  margin: 0 10px;
}