body {
    background: #000;
    color: #fff;
    padding-top: 60px;
    padding: 0px 10px;
}
/* NAVBAR */
.navbar {
  position: absolute;
  pointer-events: unset;
  top: 0px;
  left: 183px;
  width: 150%;
  z-index: 1000;
  height: 60px;
  background-color: #1a1a1a;
  align-items: center;
  padding: 0 0px;
  box-shadow: 0 5px 5px rgba(255, 0, 0, 0.527);
}

.cart-btn {
    background:#ff4747;
    border: none;
    padding: 0.5rem 1rem;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.vcoins {
    padding:2rem;
    text-align:center;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 1rem;
    margin-top:1rem;
}
.card {
    background:#222;
    padding:1.5rem;
    border-radius:8px;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.card:nth-child(1) { background:#ffd60a; color:#000; }
.card:nth-child(2) { background:#ff9f1c; color:#000; }
.card:nth-child(3) { background:#ff595e; }
.card:nth-child(4) { background:#9d4edd; }
.card:nth-child(5) { background:#00bbf9; color:#000; }
.bonus {
    position:absolute;
    top:0.5rem;
    font-size:0.8rem;
}
.amount {
    font-size:1.8rem;
    margin-top:1rem;
}
.price {
    margin-top:auto;
    font-size:1.2rem;
}
.buy-btn {
    margin-top:1rem;
    background:#ff4747;
    color:#fff;
    border:none;
    padding:0.5rem 1rem;
    border-radius:4px;
    cursor:pointer;
    transition:transform 0.2s;
}
.buy-btn:hover {
    transform:scale(1.05);
}
.footer {
    background:#111;
    color:#fff;
    text-align:center;
    padding:1rem;
    margin-top:2rem;
}
.footer-logo {
    font-weight:bold;
}
.socials a {
    color:#fff;
    margin:0 0.5rem;
}

.product-card {
  background-color: #121212;
  border: 1px solid #1e1e1e;
  border-radius: 5px;
  width: 240px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  margin: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.product-image {
  position: relative;
  background: #f5c542;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-amount {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: bold;
  color: white;
}

.product-label {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
  opacity: 0.8;
}

.product-info {
  padding: 15px 10px 5px;
}

.product-title {
  margin: 0;
  font-weight: bold;
  font-size: 16px;
}

.product-price {
  margin: 5px 0 15px;
  color: #c0c0c0;
  font-size: 14px;
}

.buy-button {
  background-color: #e53935;
  color: white;
  border: none;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.buy-button:hover {
  background-color: #d32f2f;
}