body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: flex-start;
  align-items: center;
  background-color: black;

  font-family: sans-serif;
  overflow-x: hidden;
  margin: 0;
}

.corner-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 150px;
  height: auto;
  z-index: 1001;
}

.support-button {
  position: fixed;
  bottom: 250px;
  left: 20px;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 9999;
}

.support-button img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.whatsapp-button {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 120px;
  height: 120px;
  z-index: 1001;
  cursor: pointer;
}

.whatsapp-button img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover img {
  transform: scale(1.1);
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  position: relative;
  padding: 20px 0;
}

.buy-button {
  position: fixed;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3207f1;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(250, 234, 5, 0.2);
  transition: background-color 0.3s ease;
  z-index: 9999;
}

.buy-button:hover {
  background-color: #856bf5;
}

.card-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  perspective: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.card-3d {
  position: absolute;
  width: clamp(180px, 25vw, 300px);
  height: 70%;
  max-width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease, left 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-3ds {
  position: absolute;
  width: clamp(180px, 25vw, 300px);
  max-height: auto;
  max-width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease, left 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: #333;
  color: white;
  border-radius: 6px;
  z-index: 1000;
}

.left-btn {
  left: 20px;
}

.right-btn {
  right: 20px;
}

footer {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 968px) {
  .card-wrapper {
    height: 400px;
    perspective: none;
  }

  .card-3d {
    width: clamp(180px, 25vw, 300px);
    max-width: 90%;
  }

  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .card-wrapper {
    height: 300px;
  }

  .card-3d {
    width: clamp(180px, 25vw, 300px);
    max-width: 90%;
  }

  .corner-logo,
  .support-button,
  .whatsapp-button {
    transform: scale(0.8);
  }
}





/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  font-family: sans-serif;
}

.corner-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 150px;
  height: auto;
  z-index: 1001;
}

.support-button {
  position: fixed;
  bottom: 250px;
  left: 20px;
  width: 100px;
  height: 100px;
  
  cursor: pointer;
}

.support-button img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.whatsapp-button {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 120px;
  height: 120px;
  z-index: 1001;
  cursor: pointer;
}

.whatsapp-button img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover img {
  transform: scale(1.1);
}



.main-container {
  display: flex;
  align-items: center;
  gap: 100px;
}

.card-wrapper {
  margin-top: 200px;
  margin-right: 500px;
  position: relative;
  width: auto;
  height: 900px;
  perspective: 1000px;
}

.card-3d {
  position: absolute;
  width: 300px;
  top: 0;
  transition: transform 0.5s ease, left 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card1 {
  left: 0;
}

.card2 {
  left: 0;
}

.btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: #333;
  color: white;
  border-radius: 6px;
  z-index: 1000;
}

.left-btn {
  left: 20px;
}

.right-btn {
  right: 20px;
}


@media (max-width<968px) {
  .card-wrapper {
    width: 100%;
    margin-right: 0px;
    height: auto;
    perspective: none;
  }

  .card-3d {
    width: 60%;
     
    top: 0;
    left: 0;
    transform: none;
  }

  
  
} */