/* ---- Crypto Checkout Page ---- */
:root {
  --tier-basic:     rgb(150 210 255);
  --tier-epic:      rgb(195 155 255);
  --tier-legendary: rgb(255 150 225);
}

.cc-page {
  box-sizing: border-box;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Card */
.cc-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px;
  background: rgb(35 36 48);
  border-radius: 16px;
  color: rgb(200 207 220);
}

/* Order summary */
.cc-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-order-total {
  color: #fff;
  font-size: 20px;
  font-family: var(--font-head);
}

.cc-order-sub {
  font-size: 14px;
}

.cc-order-sub.tier-basic     { color: var(--tier-basic); }
.cc-order-sub.tier-epic      { color: var(--tier-epic); }
.cc-order-sub.tier-legendary { color: var(--tier-legendary); }

/* Sections */
.cc-divider {
  height: 1px;
  background: rgb(218 224 238 / 10%);
  margin: 18px 0;
}

.cc-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-step-label {
  font-size: 16px;
  margin: 0;
}

.cc-status-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(150 159 175);
  font-size: 12px;
}

.cc-step-label.cc-pulsing {
  animation: cc-pulse 1.4s ease-in-out infinite;
}

@keyframes cc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.cc-send-amount {
  color: #fff;
  font-weight: 600;
}

/* Network buttons */
.cc-network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cc-option-btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  flex: 1;
  padding: 10px 14px;
  background: #11131a;
  border: 1px solid rgb(218 224 238 / 13%);
  border-radius: 10px;
  color: rgb(192 200 216);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.cc-option-btn.active {
  border-color: #fff;
  background: #001d5042;
  color: #fff;
}

.cc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--network-color);
}

.cc-network-logo {
  margin-left: auto;
  flex-shrink: 0;
}


/* Address box */
.cc-address-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #11131a;
  border: 1px solid rgb(218 224 238 / 13%);
  border-radius: 10px;
}

.cc-address {
  flex: 1;
  color: rgb(192 200 216);
  font-size: 14px;
  font-family: monospace;
  word-break: break-all;
}

.cc-copy-btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  height: 34px;
  background: rgb(49 50 66);
  border: none;
  border-radius: 8px;
  color: rgb(202 203 222);
  font-size: 12px;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.cc-copy-btn.copied {
  background: rgb(22 58 38);
  color: rgb(120 200 140);
}

/* Warning */
.cc-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: rgb(16 18 26 / 53%);
  border-radius: 8px;
  color: rgb(131 199 255);
}

.cc-warning-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.cc-warning p {
  margin: 0;
  color: rgb(131 199 255);
  font-size: 12px;
  line-height: 1.5;
}

.cc-warning strong {
  color: inherit;
}

/* Status bar */
.cc-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #11131a;
  border-radius: 10px;
  font-size: 14px;
}

.cc-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cc-status--pending   { color: #7dd3fc; }
.cc-status--completed { color: #86efac; }

.cc-dot-bounce {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: cc-bounce 1.2s ease-in-out infinite;
}

.cc-dot-bounce:nth-child(2) { animation-delay: 0.2s; }
.cc-dot-bounce:nth-child(3) { animation-delay: 0.4s; }

@keyframes cc-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-5px); }
}

