body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1d2024, #212429);
  font-family: Arial, sans-serif;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coin {
  margin-top: 3vmin;
  width: 78vmin; /* Adjust to a relative unit for responsiveness */
  height: 78vmin; /* Adjust to a relative unit for responsiveness */
  cursor: pointer;
  transition: transform 0.4s ease;
}

.coin:hover {
  transform: scale(1.1);
}

.click-counter {
  margin-top: 2vmin; /* Adjust to a relative unit for responsiveness */
  font-size: 10vmin; /* Adjust to a relative unit for responsiveness */
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.falling-coin {
  position: absolute;
  font-size: 10vmin; /* Make the falling emoji larger */
  animation: fall 1s ease forwards;
}

@keyframes fall {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(80vmin);
    opacity: 0;
  }
}

@keyframes rise {
  0% {
    transform: translateY(80vmin);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@media (min-width: 600px) {
  body,
  html {
    display: none;
  }
}

.submenu {
  position: fixed; /* Fixed position */
  bottom: 0; /* Position at the bottom of the viewport */
  left: 0; /* Align to the left side of the viewport */
  width: 100%; /* Occupy the full width of the viewport */
  background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px; /* Add some padding for better appearance */
}

.menu-btn {
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-shop-btn {
  background-color: #121812;
  color: white;
}

.main-menu-btn-1 {
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #121812;
  color: white;
}
.card-shop-btn:hover {
  background-color: #45a049;
}

.main-menu-btn {
  background-color: #f44336;
  color: white;
}

.main-menu-btn:hover {
  background-color: #d32f2f;
}

.card-shop-container {
  display: flex;
  flex-wrap: wrap; /* Allow cards to wrap to the next line on small screens */
  justify-content: center;
  padding: -100px;
  max-height: 70vh; /* Set a maximum height for the container */
  overflow-y: auto; /* Enable vertical scrollbar when content overflows */
}

.card {
  /* margin-top: 100px; */
  width: 200px; /* Set a fixed width for the cards */
  margin: 20px; /* Add some space between cards */
  padding: 20px;
  background-color: #8ba4a8;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow effect */
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px); /* Add a slight lift effect on hover */
}

.card h3 {
  margin-top: 0; /* Remove default margin */
  font-size: 15px;
  color: #333333;
}

.card img {
  width: 69%; /* Make the image fill the card container */
  border-radius: 20px; /* Add rounded corners to the image */
}
