* {
  margin: auto;
}
.bg-background {
  background-color: #eee;
  padding: 30px;
}
.heading5 {
  color: #fff !important;
}

.plan-button {
  background-color: #fff !important;
  color:#425a8c !important;
}
.plan-button:hover {
  background-color:#425a8c !important;
  color: #fff !important;
  border-color: #fff !important;
}
.pricing-container {
  max-width: 750px;

  width: 100%;
  text-align: center;
}

.plan-title {
  font-size: 3rem;
  font-weight: bold;
  color: #e53e3e;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.plan-subtitle {
  font-size: 1.1rem;
  color: #2b6cb0;
  margin-bottom: 40px;
  font-weight: 500;
}

.feature-item {
  background-color: #2d3748;
  color: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 500;
  border: 3px dotted #00d4aa;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

.buy-button {
  background-color: #425a8c;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 20px 60px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.buy-button:hover {
  background-color: #425a8c;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.buy-button:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .plan-title {
    font-size: 2.5rem;
  }

  .feature-item {
    font-size: 1.1rem;
    padding: 18px;
  }

  .buy-button {
    font-size: 1.5rem;
    padding: 18px 50px;
  }
}

@media (max-width: 480px) {
  .plan-title {
    font-size: 2rem;
  }

  .feature-item {
    font-size: 1rem;
    padding: 16px;
  }

  .buy-button {
    font-size: 1.3rem;
    padding: 16px 40px;
  }
}

/* Main Container */
.crypto-payment-container {
  background: #1f2937; 
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
  max-width: 50%;
  width: 100%;
}

/* Mobile view */
@media (max-width: 768px) {
  .crypto-payment-container {
    max-width: 100%;
  }
  .bg-background {
    padding: 10px;
  }
}

/* Header */
.crypto-payment-header {
  display: flex;
  justify-content: space-between !important; /* title left, right items on the edge */
  align-items: center;
  width: 100%;
}

.crypto-title {
  font-size: 22px;
  font-weight: bold;
  color: #f3f4f6;
}

.crypto-right {
  display: flex;
  align-items: center;
  margin: 1px;
  gap: 10px;
}

.crypto-timer-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
}

.crypto-timer {
  font-weight: bold;
  color: #facc15; /* yellow */
}

.crypto-back-btn {
  border: 1px solid #f3f4f6;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s ease;
}

.crypto-back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Subtitle */
.crypto-subtitle {
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
  margin: 10px;
}

.crypto-warning {
  background: #f87171;
  color: white;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  border-radius: 8px 8px 0 0;
}

/* Table Layout */
.crypto-table {
  border: 1px solid #4b5563;
  background: #111827;
  color: white;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.crypto-row {
  display: flex;
  border-bottom: 1px solid #374151;
}
.crypto-row:last-child {
  border-bottom: none;
}
.crypto-label {
  display: flex;
  padding: 12px;
  font-weight: bold;
  border-right: 1px solid #374151;
  white-space: nowrap;
  background: #1f2937;
  justify-content: space-between;
  gap: 20px;
  color: #d1d5db;
  margin: 5px 0;
  align-items: center;
}

.label-text {
  line-height: 1.4;
}

.qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 6px; */
}

.qr-code {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.3s ease;
  background: #fff;
  padding: 1px
}

.qr-code:hover {
  transform: scale(1.05);
}

.view-btn {
  background:  #1f2937;;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111827;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  width: 400px;
  position: relative;
  animation: popup 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.modal-content h3 {
  margin-bottom: 10px;
  color: #d1d5db;
}


.close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

@keyframes popup {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.crypto-value {
  flex: 2;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  word-break: break-word;
}

.crypto-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #4b5563;
  border-radius: 6px;
  background: #111827;
  color: white;
}
.crypto-input:focus {
  border-color: #425a8c;
  outline: none;
}

/* Copy Icon */
.crypto-copy-icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.2s ease-in-out;
}
.crypto-copy-icon:hover {
  color: #425a8c;
}

.crypto-submit-btn {
  width: 100%;
  background: #425a8c;
  color: white;
  padding: 12px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.crypto-submit-btn:hover {
  background: #425a8c;
}

/* Footer */
.crypto-footer {
  text-align: center;
  font-size: 12px;
  color: #fff;
  margin-top: 10px;
}

/* Footer */
.crypto-footer {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  font-weight: bold;
}
.crypto-footer {
  background: #425a8c;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
}
.crypto-copy-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.crypto-copy-icon.tick {
  transform: scale(1.2);
  color: green;
  transition: transform 0.2s ease, color 0.3s ease;
}
.copy-check-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  vertical-align: middle;
  transition: opacity 0.3s;
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.thank-you-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.thank-you-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.thank-you-content button:hover {
  background: #45a049;
}
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}

.btn-header {
  padding: 0 0;
}
.crypto-or {
  text-align: center;
  font-size: 16px;
  color: #555;
  font-weight: 600;
  border-bottom: 1px solid #374151;
}
