body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: url("img/credential-bg-BJoGoJkg.svg") #f5f7fa repeat center center fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.widget-container {
  width: 100%;
  max-width: 620px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  transition: 0.3s ease;
}

.header-logo {
  max-height: 48px;
  display: block;
  margin: 0 auto 20px;
}

.widget-header {
  text-align: center;
  margin-bottom: 32px;
}

.widget-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.bitcoin-badge {
  display: inline-block;
  background-color: #f90;
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  margin-top: 12px;
  box-shadow: 0 2px 6px rgba(249, 144, 0, 0.3);
}

.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  background: #fafbfc;
  transition: all 0.3s ease;
  text-align: center;
}

.ticket-card:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.ticket-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.ticket-description .coin {
  height: 80px;
  margin-bottom: 10px;
}

.ticket-price {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.ticket-quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.quantity-btn {
  background-color: #6498d0;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.quantity-btn:hover {
  background-color: #4d7cb5;
}

.quantity-input {
  width: 60px;
  text-align: center;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #ccd6e0;
  font-size: 16px;
}

.add-to-cart {
  background-color: #f90;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #e68400;
}

.cart-section {
  margin-top: 40px;
  border-top: 1px solid #e2e8f0;
  padding-top: 28px;
}

.cart-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  background: #eef2f7;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  color: #444;
}

.remove-item {
  background: none;
  border: none;
  color: #e00;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.cart-total {
  font-size: 17px;
  font-weight: bold;
  color: #444;
  text-align: center;
  margin: 20px 0;
}

.checkout-form {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.checkout-form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d9e0;
  border-radius: 10px;
  font-size: 15px;
  background-color: #f9fbfd;
}

.checkout-btn {
  width: 100%;
  background-color: #6498d0;
  color: #fff;
  padding: 14px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.checkout-btn:disabled {
  background-color: #b5cce6;
  cursor: not-allowed;
}

.hidden {
  display: none;
}

.cart-empty {
  text-align: center;
}

.thank-you-container {
  text-align: center;
  padding: 24px;
  margin-top: 20px;
  border-radius: 16px;
  background: #f9fbfd;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.thank-you-container h1 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.thank-you-container p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Buttons or links in any container */
.thank-you-container a {
  display: inline-block;
  margin-top: 12px;
  color: #6498d0;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.thank-you-container a:hover {
  color: #4176a3;
}
