body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0d0d0d;
  color: #f1f1f1;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* 🔁 Game scroll banner */
.game-banner {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 20px;
}

.game-images {
  display: inline-block;
  animation: scroll 15s linear infinite;
}

.game-images img {
  height: 130px;
  margin-right: 10px;
  border-radius: 8px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

header h1 {
  font-size: 2.5rem;
  color: #00ffff;
}

.tagline {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  background-color: #1f1f1f;
  border: 2px solid #00bcd4;
  color: #00ffff;
  padding: 15px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.2s;
}

.btn:hover {
  background-color: #00bcd4;
  color: #000;
}

.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.video-section h2,
.screenshots h2,
.feedback h2 {
  color: #00ffff;
  margin-bottom: 15px;
}

.gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border: 2px solid #00bcd4;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

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

/* 📝 Feedback form */
.feedback form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.feedback input,
.feedback textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1c1c1c;
  color: white;
}

.feedback button {
  background-color: #00bcd4;
  border: none;
  padding: 10px;
  font-size: 1rem;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.feedback button:hover {
  background-color: #0097a7;
}

footer {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #777;
}
.privacy-points {
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
  list-style: disc;
  padding-left: 20px;
}

.receiver-section {
  margin-top: 50px;
  padding: 20px;
  background-color: #161616;
  border-radius: 10px;
  border: 1px solid #00bcd4;
}

.receiver-section h2 {
  color: #00ffff;
  margin-bottom: 10px;
}

.receiver-section p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 15px;
}

.receiver-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.receiver-features li {
  margin-bottom: 8px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}

.receiver-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00bcd4;
}
.receiver-img {
  width: 100%;
  max-width: 500px;
  margin: 20px 0;
  border-radius: 8px;
  border: 2px solid #00bcd4;
}

.join-steps {
  margin-top: 50px;
  padding: 20px;
  background-color: #1a1a1a;
  border-left: 4px solid #00ffff;
  border-radius: 10px;
}

.join-steps h2 {
  color: #00ffff;
  margin-bottom: 10px;
}

.join-steps p {
  margin-bottom: 15px;
  color: #ccc;
}

.steps {
  list-style: decimal;
  padding-left: 20px;
  text-align: left;
  color: #eee;
}

.steps li {
  margin-bottom: 10px;
}

.steps a {
  color: #00bcd4;
  text-decoration: underline;
}

.steps a.disabled {
  pointer-events: none;
  color: #888;
  text-decoration: none;
}

.playstore-btn img {
  width: 200px;
  height: auto;
  margin-top: 15px;
  opacity: 1;
  transition: 0.2s;
}

.footer-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  /* background-color: #1a1a1a; */
  padding: 15px 10px;
  text-align: center;
  color: #ccc;
  font-size: 14px;
}

.footer-bar a {
  color: #00ffff;
  text-decoration: none;
}

.footer-bar a:hover {
  text-decoration: underline;
}

#cam_img{
  height: 700px;
  width: auto;
}