body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #16305d;
  overflow-x: hidden;
  position: relative;
}

.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a5f, #0d1a2c);
  overflow: hidden;
  z-index: -1;
}

.dot-pattern,
.line-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.dot-pattern {
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 20px 20px;
  animation: dot-move 60s linear infinite;
}

.line-pattern {
  background-image: linear-gradient(90deg, transparent 99%, rgba(255, 255, 255, 0.05) 1%),
    linear-gradient(180deg, transparent 99%, rgba(255, 255, 255, 0.05) 1%);
  background-size: 40px 40px;
  animation: line-fade 40s linear infinite;
}

@keyframes dot-move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 100%;
  }
}

@keyframes line-fade {
  0% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0.05;
  }
}

.animated-background::before,
.animated-background::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.05);
  animation: float-bubble 20s ease-in-out infinite alternate;
}

.animated-background::before {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 15%;
  animation-duration: 25s;
}

.animated-background::after {
  width: 200px;
  height: 200px;
  bottom: 5%;
  right: 10%;
  animation-duration: 30s;
  animation-delay: 5s;
}

@keyframes float-bubble {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.05;
  }
  100% {
    transform: translate(20px, 30px) scale(1.1);
    opacity: 0.1;
  }
}

.name {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  margin: 0;
}

.card {
  margin: auto;
  max-width: 90%;
  width: 30%;
  border-radius: 1rem;
  background: linear-gradient(23deg, rgba(46, 26, 110, 0.5) 0%, rgba(93, 67, 100, 0.5) 60%, rgba(222, 182, 73, 0.5) 100%);
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.profile-intro {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 12px;
  text-align: center;
  font-style: italic;
}

.profile-title {
  margin-top: 0px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
  color: #ffffff;
}

.infos {
  display: flex;
  gap: 1rem;
}

.image {
  width: 7rem;
  height: 8rem;
  border-radius: 0.5rem;
  background-image: url('/images/satoshi.jpg');
  background-size: cover;
  background-position: center;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 7rem;
  flex: 1;
}

.function {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
}

.btc-balance {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  color: #c9870b;
  font-size: 1rem;
  font-weight: bolder;
}

.btc-balance i {
  font-size: 1.5rem;
}

.flex {
  align-items: center;
}

.state-value {
  font-size: 1rem;
  font-weight: bolder;
  color: #c9870b;
  transition: color 0.3s ease, transform 0.3s ease;
}

.balance-changed {
  animation: pulseBalance 0.5s ease-in-out;
}

@keyframes pulseBalance {
  0% {
    transform: scale(1);
    color: inherit;
  }
  50% {
    transform: scale(1.05);
    color: #ffd700;
  }
  100% {
    transform: scale(1);
    color: inherit;
  }
}

#btc-price-display {
  transition: color 0.5s ease, transform 0.5s ease;
}

.price-increase {
  color: #28a745;
  transform: scale(1.05);
  font-weight: bold;
}

.price-decrease {
  color: #dc3545;
  transform: scale(0.95);
  font-weight: bold;
}

.usd-balance {
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: rgb(77, 192, 15);
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bolder;
}

.usd-balance:hover {
  background-color: #7624c2;
  color: white;
}

.btc-balance,
.usd-balance {
  display: block;
  margin-block-start: 15px;
  unicode-bidi: isolate;
}

#upper-hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  box-sizing: border-box;
}

#site-branding h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

#donate-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
  padding: 8px 15px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

#donate-link i {
  font-size: 1.8rem;
  color: #1fd008;
}

#donate-link span {
  display: inline;
}

#donate-link:hover {
  color: #1fd008;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(31, 208, 8, 0.4);
  background-color: rgba(31, 208, 8, 0.2);
}

#satoshi-img {
  width: 80px;
  border-radius: 50%;
}

main {
  padding: 6rem 2rem 10rem 2rem;
}

#product-grid {
  display: grid;
  gap: 1rem 1rem;
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  user-select: none;
  max-width: 300px;
  margin: 1rem auto;
  border: 1px solid #ffffff22;
  background: linear-gradient(0deg, rgba(40, 44, 52, 1) 0%, rgba(17, 0, 32, 0.5) 100%);
  box-shadow: 0 7px 20px 5px #00000088;
  border-radius: 0.7rem;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  overflow: hidden;
  transition: 0.5s all;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
  transform: scale(1.01);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.product-card.shake {
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  border: 2px solid #dc3545;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.product-card .main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.product-card .top-content {
  flex-grow: 1;
}

.top-content {
  display: flex;
  flex-direction: column;
}

.product-card .bottom-content {
  margin-top: auto;
}

.product-card .tokenImage {
  border-radius: 0.5rem;
  max-width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card h2 {
  margin: 1rem 0 0.3rem;
  font-size: 1.2rem;
  font-weight: bold;
  height: 3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.product-card .description {
  margin: 0.5rem 0;
  color: #ccc;
  font-size: 0.9rem;
  height: 4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.product-card .tokenInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  gap: 10px;
}

.product-card .price {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: bold;
  color: #ee83e5;
  margin-bottom: 0;
}

.product-card .price .dollar-sign {
  text-decoration: none;
  color: #8aff8a;
  font-size: 1.2rem;
}

.product-card .price p {
  color: #8aff8a;
  font-size: 1.8rem;
}

.product-card .duration {
  color: #70e5e3;
}

.product-card hr {
  width: 100%;
  border: none;
  border-bottom: 1px solid #88888855;
  margin-top: 1rem;
}

.product-card .creator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  justify-content: center;
}

.product-card .creator .wrapper {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
}

.product-card .creator .wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.CartBtn {
  width: 140px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background-color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: .5s;
  overflow: hidden;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
  transition-duration: .5s;
  margin-top: 10px;
}

.CartBtn.success {
  background-color: #28a745;
  transition: background-color 0.3s ease;
}

.IconContainer {
  position: absolute;
  left: -50px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: .5s;
}

.IconContainer i {
  font-size: 1rem;
  color: rgb(17, 17, 17);
}

.text {
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(17, 17, 17);
  z-index: 1;
  transition-duration: .5s;
  font-size: 1.04em;
  font-weight: 600;
}

.CartBtn:hover .IconContainer {
  transform: translateX(58px);
  border-radius: 40px;
  transition-duration: .5s;
}

.CartBtn:hover .text {
  transform: translate(10px, 0px);
  transition-duration: .5s;
}

.CartBtn:active {
  transform: scale(0.95);
  transition-duration: .5s;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 5px;
}

.quantity-control .quantity-btn {
  background-color: #7624c2;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.quantity-control .quantity-btn:hover {
  background-color: #b980f0;
  transform: scale(1.05);
}

.quantity-control .quantity-btn:active {
  transform: scale(0.95);
}

.quantity-control .quantity-input {
  width: 60px;
  padding: 5px;
  border: 1px solid #ffffff22;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffd700;
  font-size: 1rem;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}

.quantity-control .quantity-input::-webkit-outer-spin-button,
.quantity-control .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.donate-button {
  cursor: pointer;
  border: none;
  background: #1fd008;
  color: #111;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: grid;
  place-content: center;
  transition:
    background 300ms,
    transform 200ms;
  font-weight: 600;
  font-size: 10px;
}

.button__text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;
}

.button__text>span {
  position: absolute;
  transform: rotate(calc(17deg * var(--index)));
  inset: 0px;
}

.button__circle {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background: #111;
  color: #1fd008;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.donate-button:hover {
  background: #000;
  transform: scale(1.05);
}

.donate-button:hover .button__icon {
  color: #000;
}

.donate-button:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.donate-button:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}

@media (hover: hover) and (pointer: fine) {
  .CartBtn:hover .IconContainer {
    transform: translateX(58px);
    border-radius: 40px;
  }

  .CartBtn:hover .text {
    transform: translate(10px, 0px);
  }
}

#cart i {
  color: #f5f5f5;
  font-size: 1.8rem;
}

#cart {
  position: relative;
  cursor: pointer;
  padding: 10px 15px;
  margin-left: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

#cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(245, 245, 245, 0.4);
  background-color: rgba(245, 245, 245, 0.2);
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4d4f;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  border: 2px solid #111;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#cart-total-bar {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #7624c2, #b980f0);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  min-width: 320px;
  opacity: 0.6;
  transition-duration: .5s;
}

#cart-total-bar:hover {
  transition-duration: .5s;
  opacity: 1;
}

#notification-container {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  width: 100%;
  max-width: 400px;
}

.notification-message {
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translateY(20px);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: fit-content;
}

.notification-message.error {
  background-color: #dc3545;
}

.notification-message.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-content i {
  font-size: 1.4rem;
}

.cart-label {
  font-weight: 600;
  font-size: 1rem;
}

#cart-total-amount {
  font-size: 1.2rem;
  font-weight: bold;
}

.checkout-btn {
  background-color: white;
  color: #7624c2;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: #f0e6ff;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s forwards;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(23deg, rgba(46, 26, 110, 0.8) 0%, rgba(93, 67, 100, 0.8) 60%, rgba(222, 182, 73, 0.8) 100%);
  margin: auto;
  padding: 30px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  color: #fff;
  animation: slideIn 0.4s ease-out forwards;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.close-button {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
  color: #f00;
  text-decoration: none;
}

.share-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.share-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.share-btn i {
  font-size: 1.2rem;
}

.twitter-btn {
  background-color: #000000;
  color: white;
}

.twitter-btn:hover {
  background-color: #1f1f1f;
}

.facebook-btn {
  background-color: #1877F2;
  color: white;
}

.facebook-btn:hover {
  background-color: #145cb3;
}

#cart-summary-items {
  margin-bottom: 20px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

.cart-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.cart-summary-item:last-child {
  border-bottom: none;
}

.item-name {
  flex-grow: 1;
  font-weight: 600;
}

.item-quantity {
  margin-right: 15px;
  color: #eee;
}

.item-price {
  font-weight: bold;
  color: #1fd008;
}

.modal-total {
  text-align: right;
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  color: #ffd700;
}

.modal-buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  gap: 15px;
}

.modal-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-grow: 1;
}

.modal-btn.confirm {
  background-color: #28a745;
  color: #fff;
}

.modal-btn.confirm:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.modal-btn.cancel {
  background-color: #dc3545;
  color: #fff;
}

.modal-btn.cancel:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.site-footer {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  color: #f0f0f0;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  background: rgba(255, 215, 0, 0.03);
  border-radius: 50%;
  animation: float-bubble-footer 25s ease-in-out infinite alternate;
  z-index: 0;
}

.site-footer::before {
  width: 100px;
  height: 100px;
  top: -30px;
  left: 10%;
  animation-duration: 20s;
  animation-delay: 0s;
}

.site-footer::after {
  width: 120px;
  height: 120px;
  bottom: -40px;
  right: 15%;
  animation-duration: 28s;
  animation-delay: 8s;
}

@keyframes float-bubble-footer {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.03;
  }
  100% {
    transform: translate(20px, 30px) scale(1.05);
    opacity: 0.06;
  }
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.disclaimer {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #bbb;
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.contact-info a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 2000px) {
  #product-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 768px) {
  main {
    padding: 5rem 1rem;
  }

  #upper-hud {
    padding: 0.5rem 1rem;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
  }

  #site-branding h1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  #donate-link {
    font-size: 0.9rem;
    gap: 4px;
    padding: 6px 10px;
    margin-left: 0;
    width: fit-content;
  }
  #donate-link i {
    font-size: 1.2rem;
  }

  #donate-link span {
    display: none;
  }

  #cart {
    padding: 8px 12px;
    margin-left: 1rem;
  }

  #cart i {
    font-size: 1.4rem;
  }

  #cart-count {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
    top: -5px;
    right: -5px;
  }

  #upper-hud p {
    font-size: small;
    font-weight: bolder;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  #upper-hud h1 {
    font-size: medium;
    font-weight: bolder;
  }

  .donate-text {
    display: none;
  }

  #product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #satoshi-img {
    width: 70px;
    padding: 10px;
  }

  .CartBtn {
    width: 100%;
    max-width: 140px;
    height: 40px;
  }

  .CartBtn:hover .IconContainer {
    transform: translateX(58px);
  }

  .CartBtn:hover .text {
    transform: translate(10px, 0px);
  }

  .quantity-control {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .quantity-control .quantity-btn {
    width: 25px;
    height: 25px;
    font-size: 1rem;
    padding: 3px 8px;
  }
  .quantity-control .quantity-input {
    width: 45px;
    font-size: 0.9rem;
    padding: 3px;
  }

  .dollar-sign {
    padding-left: 3px;
  }

  .product-card .main {
    display: flex;
    flex-direction: column;
    padding: .5rem;
  }

  .product-card .tokenImage {
    height: 150px;
  }

  .product-card .description {
    font-size: 0.8rem;
  }

  .product-card .price,
  .product-card .duration {
    font-size: 0.8rem;
  }
  .donate-button {
    width: 50px;
    height: 50px;
    font-weight: 500;
    font-size: 8px;
  }
  .button__circle {
    width: 18px;
    height: 18px;
  }

  .button__text {
    position: absolute;
    inset: 0;
    animation: text-rotation 8s linear infinite;
  }

  .button__text>span {
    position: absolute;
    transform: rotate(calc(17deg * var(--index)));
    inset: -5px;
  }

  .card {
    width: 90%;
    margin-bottom: 0;
  }

  .donate-button {
    bottom: 80px;
    right: 20px;
  }

  #cart-total-bar {
    opacity: 1;
  }

  #notification-container {
    bottom: 140px;
    max-width: 90%;
  }

  .modal-content {
    width: 80%;
    margin: 5% auto;
    padding: 20px;
  }
  .modal-buttons {
    flex-direction: column;
  }
  .modal-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .modal-btn:last-child {
    margin-bottom: 0;
  }
  .modal-total {
    font-size: 1.2rem;
  }

  .product-card .tokenInfo {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer {
    padding: 2rem 1rem;
    margin-top: 3rem;
  }

  .disclaimer {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .contact-info {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .copyright {
    font-size: 0.75rem;
    margin-top: 1rem;
  }

}

@media (max-width: 480px) {

  .product-card .price p {
    font-size: 1.2rem;
  }

  .product-card .price .dollar-sign {
    font-size: 1rem;
  }

  #product-grid {
    grid-template-columns: 2,1fr;
  }

  .product-card {
    width: 95%;
    margin: 1rem auto;
  }

  .product-card .tokenImage {
    height: 120px;
  }

  .product-card .tokenInfo {
    flex-direction: column;
    gap: 5px;
  }

  .product-card .price,
  .quantity-control,
  .CartBtn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .CartBtn .IconContainer {
    left: -30px;
  }

  .CartBtn:hover .IconContainer {
    transform: translateX(30px);
  }

  .CartBtn:hover .text {
    transform: translate(0px, 0px);
  }

  .product-card h2 {
    font-size: 1.1rem;
    height: auto;
    -webkit-line-clamp: unset;
  }

  .product-card .description {
    font-size: 0.8rem;
    height: auto;
    -webkit-line-clamp: unset;
  }

  .site-footer {
    padding: 1.5rem 0.8rem 4rem;
  }

}