/* --- Base Styles (Desktop First) --- */
body {
  line-height: 1.2;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Assistant, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  background: linear-gradient(to top, #fff, #b2deef);
  color: rgb(0, 0, 0);
}

.main-section {
  height: 80vh;
}

.main {
  height: 100vh;
  padding-top: 50p;
}
.highlight {
  padding: 100px 0 50px 0;
}
h1,
h2 {
  font-size: 40px;
  text-align: center;
}

h3 {
  font-size: 26px;
  text-align: center;
}

.main-section p {
  text-align: center;
  font-size: 20px;
  margin: 40px auto;
  width: 700px;
}

.btn {
  text-transform: uppercase;
  display: block;
  margin: auto;
  padding: 12px 30px;
  background: #ffffff;
  color: rgb(0, 0, 0);
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.fb-btn {
  background: rgb(36, 139, 199);
  color: white;
}
.btn-group {
  width: fit-content;
  margin: 30px auto;
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 30px;
}

.btn-group .btn {
  border-radius: 0px;
}

.google-play-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* ✅ Wrap on small screens */
}

.card {
  background-color: #ffffff;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.download-para {
  color: black;
  padding: 10px;
}

.card .img img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.ytb-img img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}

.yt-heading {
  width: 150px;
  font-size: 18px;
  padding: 10px;
}

.card button {
  background-color: #00bfff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card button:hover {
  background-color: #0099cc;
}

.card button a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.msg-div {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color: #000;
  font-size: 20px;
}

.small-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  flex-wrap: wrap; /* ✅ Responsive wrap */
}

.small-card .sl-card {
  width: 300px;
  height: auto;
  padding: 30px;
  margin: 20px 10px;
}

.title {
  padding-bottom: 20px;
  font-weight: 700;
  font-size: 26px;
}

.sub-title {
  font-weight: 400;
  padding-bottom: 20px;
}

.watch-video-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff4444;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.watch-video-btn:hover {
  background-color: #cc0000;
}

.subscribe-btn {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  width: fit-content;
}

.subscribe-btn:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  max-width: fit-content;
}

ul li {
  padding: 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
}

a {
  word-break: break-word;
}

.section {
  height: auto;
}
.msg-section {
  height: 40vh;
  text-align: center;
  font-size: 20px;
  margin: -35px auto 100px auto;
  width: 700px;
}
.msg-section p {
  padding: 30px 0;
}
.game-launch {
  padding: 30px 0 60px 0;
}
.section h2 {
  margin-bottom: 10px;
}

.socials a {
  display: block;
  margin-bottom: 8px;
}

.hiring-pulse {
  animation: pulse 1.5s infinite ease-in-out;
  color: #000000;
  font-weight: bold;
  border: 1px solid gray;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* --- ✅ Responsive Media Queries --- */
@media (max-width: 1024px) {
  .main-section {
    padding-top: 60px;
    height: auto;
  }

  .main-section p {
    width: 90%;
    font-size: 18px;
  }

  .title {
    font-size: 22px;
  }

  .msg-div {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  h1,
  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-section p {
    font-size: 16px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .subscribe-btn,
  .watch-video-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .small-card .sl-card {
    width: 90%;
  }

  .card {
    width: 90%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .main-section p {
    font-size: 15px;
  }

  .msg-div {
    font-size: 16px;
    padding: 15px;
  }

  .btn-group {
    flex-direction: column;
    gap: 15px;
  }

  .subscribe-btn {
    width: 100%;
  }

  .google-play-card {
    flex-direction: column;
    gap: 20px;
  }

  ul li {
    font-size: 1rem;
  }
}
