.main-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  width: 100%;
  padding-top: 40px;
}
.main-section #title-container {
  width: 65%;
}
.main-section hr {
  display: block;
  height: 3px;
  width: 50%;
  border: 0;
  border-top: 1px solid #a5b5e0;
  margin: 1em 0;
  padding: 0;
}
.main-section .container {
  padding: 0;
  margin-bottom: 35px;
  width: 70%;
}
.main-section .container > * {
  padding: 0 30px;
}

@media all and (max-width: 1000px) {
  .main-section {
    padding-top: 20px;
  }
  .main-section .container, .main-section #title-container {
    width: 80%;
  }
  .main-section .container > *, .main-section #title-container > * {
    padding: 10px 0;
  }
  .main-section .container img, .main-section #title-container img {
    width: 100%;
  }
  .inline-container {
    flex-direction: column-reverse !important;
  }
}
.card-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-container .card-scene {
  width: 30vh;
  height: 50vh;
  perspective: 1000px;
  position: relative;
}
.card-container .card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 15s infinite linear;
  /* Round shadow under the card */
}
.card-container .card .shadow {
  position: absolute;
  width: 30vh;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  bottom: -60px;
  left: 0;
  filter: blur(15px);
  z-index: -1;
  transform: rotateX(90deg);
}
.card-container .card .card-face {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.card-container .card .card-front {
  background: linear-gradient(45deg, #e6e6e6, #ffffff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.card-container .card .card-back {
  background: linear-gradient(45deg, #d1d1d1, #f5f5f5);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card-image {
  width: 90%;
  height: auto;
  border-radius: 10px;
  margin: 15px 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: #333;
}

.barcode {
  width: 80%;
  height: 40px;
  background: repeating-linear-gradient(90deg, #333, #333 2px, #fff 2px, #fff 4px);
  margin: 15px 0;
  border-radius: 5px;
}

.chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(45deg, #ddd, #999);
  border-radius: 5px;
  margin: 15px 0;
  position: relative;
  overflow: hidden;
}

.chip::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 20px;
  background: linear-gradient(45deg, #bbb, #eee);
  border-radius: 3px;
}

.white-flare {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
  opacity: 0;
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes flareAnimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}/*# sourceMappingURL=gift.css.map */