html,
body {
  margin: 0;
  padding: 0;
  background: #d3dce5;
  color: #333;
}

body {
  max-width: 767px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
}

header {
  background-color: #2b2d42;
  color: white;
  padding: .75rem;
  position: relative;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 50px;
  height: auto;
  border-radius: 8px;
}

.site-text h1 {
  margin: 0;
  font-size: 1.75rem;
}

.MENU-toggle {
  font-size: 1.75rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  color: white;
}

.dropdown-MENU {
  display: none;
  background-color: #3a3d5c;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subMENU-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 10px;
}

.subMENU-row a {
  flex: 1 1 40%;
  margin: 5px;
  background: #4f5480;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.3s;
  font-weight: bold;
}

.subMENU-row a:hover {
  background: #6c72a5;
}

.container {
  padding: 1rem;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero img {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 1.5rem;
  color: #0d3c61;
}

.hero p {
  font-size: 1rem;
  color: #555;
  margin: 1rem 0;
}

.download-btn {
  display: none;
  padding: 12px 25px;
  margin-top: 50px;
  margin-bottom: 30px;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  border: 2px solid transparent;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.download-btn:hover {
  background: white;
  color: #ff6600;
  border: 2px solid #ff6600;
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.countdown {
  font-size: 1.2rem;
  color: #610d0d;
  margin-top: 2rem;
  font-weight: bold;
}

section {
  margin: 0;
}

section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0d3c61;
}

section ul,
section ol {
  padding-left: 1.5rem;
}

section li {
  margin-bottom: 0.7rem;
}

footer {
  text-align: center;
  padding: .75rem;
  background: #2b2d42;
  color: white;
  font-weight: bold;
}


.share-buttons-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.share-buttons {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 7px;
  border-radius: 10px;
  color: white;
  font-weight: 200;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp {
  background-color: #25D366;
}

.facebook {
  background-color: #3b5998;
}

.telegram {
  background-color: #0088cc;
}

#copy-text {
  width: 1px;
  height: 1px;
  border: 0;
  color: transparent;
  position: absolute;
  top: 0;
  z-index: -100;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  background: white;
}

.app-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.app-card:hover {
  transform: translateY(-5px);
}

.app-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.app-card h3 {
  margin: 0.3rem 0;
  font-size: 1.1rem;
  color: #222;
}

.app-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-top: 20px;
  margin-bottom: 5px;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  background: white;
  color: #ff6600;
  border: 2px solid #ff6600;
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.game-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: Arial, sans-serif;
}

.game-table th,
.game-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
}

.game-table th {
  background: #0d3c61;
  color: #fff;
  text-align: center;
}

.game-table td:nth-child(1),
.game-table td:nth-child(3) {
  width: 10%;
  text-align: center;
  font-weight: bold;
}

.game-table td:nth-child(2),
.game-table td:nth-child(4) {
  width: 40%;
  text-align: center;
}

.game-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

@media (max-width: 500px) {
  .app-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 50px;
    height: auto;
    border-radius: 8px;
  }

  .site-text h1 {
    margin: 0;
    font-size: 1.25rem;
  }

  .MENU-toggle {
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    color: white;
  }
}

.also-heading {
  color: #0d3c61;
  font-size: 1.5rem;
  text-align: center;
  background-color: white;
  padding: .4rem;
  margin: 0 auto;
}

.notice-container {
  width: 100%;
  background-color: #FFE082;
  overflow: hidden;
  height: 40px;
  position: relative;
  border-radius: 5px;
}

.notice-wrapper {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

.notice-text {
  font-size: 18px;
  color: #000;
  display: inline-block;
  padding: 10px 0;
  font-family: 'Segoe UI', sans-serif;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

#breadcrumb {
  font-size: 15px;
  margin: 10px 0;
}

#breadcrumb a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-family: "Segoe UI", sans-serif;
}

#breadcrumb a:hover {
  text-decoration: underline;
  color: green;
}

#breadcrumb::before {
  content: "•";
  color: rgb(255, 0, 0);
  margin-right: 5px;
}