#afuerafest-bitcoin-widget {
  --primary-color: #ffdc00;
  --primary-dark: #e6c700;
  --secondary-color: #ff6b6b;
  --text-color: #ffffff;
  --bg-color: #333333;
  --card-bg: #444444;
  --border-color: #555555;
  --success-bg: #2d4a2d;
  --success-text: #a3d9a3;
}

#afuerafest-bitcoin-widget * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

#afuerafest-bitcoin-widget.widget-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#afuerafest-bitcoin-widget .widget-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

#afuerafest-bitcoin-widget .widget-header h2 {
  color: var(--bg-color);
  margin-bottom: 10px;
}

#afuerafest-bitcoin-widget .widget-header p {
  color: var(--bg-color);
}

#afuerafest-bitcoin-widget .widget-header .header-logo {
  max-width: 150px;
  display: block;
  margin: 0 auto 15px;
}

#afuerafest-bitcoin-widget .bitcoin-badge,
#afuerafest-bitcoin-widget .discount-badge {
  background-color: #f7931a;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

#afuerafest-bitcoin-widget .ticket-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

#afuerafest-bitcoin-widget .ticket-card {
  flex: 1 1 300px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  background-color: var(--card-bg);
  transition: transform 0.2s, box-shadow 0.2s;
}

#afuerafest-bitcoin-widget .ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#afuerafest-bitcoin-widget .ticket-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

#afuerafest-bitcoin-widget .ticket-description {
  margin-bottom: 15px;
  color: var(--text-color);
  opacity: 0.8;
}

#afuerafest-bitcoin-widget .ticket-price {
  font-size: 22px;
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: 15px;
}

#afuerafest-bitcoin-widget .original-price {
  text-decoration: line-through;
  color: var(--text-color);
  opacity: 0.6;
  font-size: 18px;
}

#afuerafest-bitcoin-widget .discount-price {
  color: var(--secondary-color);
}

#afuerafest-bitcoin-widget .ticket-quantity {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#afuerafest-bitcoin-widget .quantity-btn {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--bg-color);
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
  font-weight: bold;
}

#afuerafest-bitcoin-widget .quantity-btn:hover {
  background-color: var(--primary-dark);
}

#afuerafest-bitcoin-widget .quantity-input {
  width: 50px;
  height: 30px;
  text-align: center;
  margin: 0 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--bg-color);
  color: var(--text-color);
}

#afuerafest-bitcoin-widget .add-to-cart {
  width: 100%;
  padding: 10px;
  background-color: var(--primary-color);
  color: var(--bg-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.2s;
}

#afuerafest-bitcoin-widget .add-to-cart:hover {
  background-color: var(--primary-dark);
}

#afuerafest-bitcoin-widget .cart-section {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 8px;
}

#afuerafest-bitcoin-widget .cart-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#afuerafest-bitcoin-widget .cart-items {
  margin-bottom: 20px;
  color: var(--text-color);
}

#afuerafest-bitcoin-widget .cart-item {
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

#afuerafest-bitcoin-widget .remove-item {
  background: none;
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  font-weight: bold;
  margin-left: 8px;
}

#afuerafest-bitcoin-widget .cart-empty {
  color: var(--text-color);
  opacity: 0.7;
  font-style: italic;
}

#afuerafest-bitcoin-widget .cart-total {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  margin: 15px 0;
  color: var(--text-color);
}

#afuerafest-bitcoin-widget .checkout-form {
  margin-top: 20px;
}

#afuerafest-bitcoin-widget .checkout-form h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

#afuerafest-bitcoin-widget .form-group {
  margin-bottom: 15px;
}

#afuerafest-bitcoin-widget .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--text-color);
}

#afuerafest-bitcoin-widget .form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--bg-color);
  color: var(--text-color);
}

#afuerafest-bitcoin-widget .checkout-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: var(--bg-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.2s;
}

#afuerafest-bitcoin-widget .checkout-btn:hover {
  background-color: var(--primary-dark);
}

#afuerafest-bitcoin-widget .checkout-btn:disabled {
  background-color: #555555;
  color: #777777;
  cursor: not-allowed;
}

#afuerafest-bitcoin-widget .success-message {
  text-align: center;
  padding: 30px;
  background-color: var(--success-bg);
  border: 1px solid #2a582a;
  border-radius: 8px;
  color: var(--success-text);
  margin-top: 20px;
}

#afuerafest-bitcoin-widget .hidden {
  display: none;
}

#afuerafest-bitcoin-widget .coinsnap-logo {
  height: 30px;
  margin-left: 10px;
  vertical-align: middle;
}

#afuerafest-bitcoin-widget .coinsnap-logo-wrapper {
  margin-top: 30px;
  text-align: center;
}

#afuerafest-bitcoin-widget .thank-you-container {
  text-align: center;
  background-color: #444444;
  padding: 80px 50px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#afuerafest-bitcoin-widget .thank-you-container h1 {
  color: #ffdc00;
  font-size: 36px;
  margin-bottom: 20px;
}

#afuerafest-bitcoin-widget .thank-you-container p {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.9;
}

#afuerafest-bitcoin-widget .thank-you-container .email {
  color: #ff6b6b;
  font-weight: bold;
}

@media (max-width: 600px) {
  #afuerafest-bitcoin-widget.widget-container {
    padding: 15px;
  }

  #afuerafest-bitcoin-widget .ticket-options {
    flex-direction: column;
  }
}
