* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav {
  background-color: maroon;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}

nav a:hover {
  background-color: #f0f0f0;
}

nav li:first-child {
  margin-right: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

.menu-button {
  display: none;
}

.banner {
  width: 100%;
  overflow: hidden;
}

.banner img {
  width: 100%;

  display: block;

}


.side-links {
  position: fixed;
  top: 40%;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.side-links a img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.side-links a img:hover {
  transform: scale(1.1);
}

.marquee {
  background-color: black;
  color: #ccc;
}

.search-container {
  width: 100%;
  padding: 15px;
  background-color: #f1f1f1;
  text-align: center;
}

#searchInput {
  width: 90%;
  max-width: 400px;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}


.apps {
  background-color: maroon;
  text-align: center;
  text-decoration-color: #222;
}

.game-row {
  display: flex;
  align-items: center;
  background: white;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  gap: 15px;

}

.game-no {
  font-weight: bold;
  font-size: 18px;
}

.game-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.game-info {
  flex: 1;
  font-size: 14px;
}

.game-info strong {
  font-weight: bold;
}

.download-btn {
  background-color: #28a745;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;


}

.download-btn:hover {
  background-color: #218838;
}

.bonus {
  color: red;
}

.Withdraw {
  color: green;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact-info {
  margin: 20px 0;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info strong {
  display: inline-block;
  width: 120px;
  color: #000;
}

.thank-box {
  background: #fff;
  padding: 30px 20px;
  max-width: 500px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.thank-box h1 {
  color: green;
  font-size: 28px;
  margin-bottom: 15px;
}

.thank-box p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.game-box img {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 6px;
}

.game-box h3 {

  text-align: center;
}

.game-box p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #000;
}

.down {
  text-align: center;
}

.button-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}


.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  background-color: #28a745;
}

.btn:hover {
  background-color: #218838;
}

.btn-telegram {
  background-color: #229ED9;
}

.btn-telegram:hover {
  background-color: #1284b0;
}

.other-apps {
  background: #00923f;
  color: black;
  text-align: center;

}

.red-disclaimer-box {
  background-color: #fff7f7;
  border: 2px solid #ff5733;
  padding: 10px;
  margin: 10px;
}

.centerio {
  text-align: center;
  text-decoration: underline;
}

.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  color: #fff;
}


@media(max-width: 800px) {
  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }
}

@media(max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}