/* =========================================
   LEAGUE PAYMENT PAGE – MATCHES REGISTRATION
   Uses same visual language + tokens
   ========================================= */

:root {
  --reg-gold: #f4b60c;
  --reg-gold-soft: #d4a373;

  --reg-graphite-1: #31343c;
  --reg-graphite-2: #3a3e48;
  --reg-graphite-3: #2d3037;

  --reg-white: rgba(255, 255, 255, 0.92);
  --reg-white-dim: rgba(255, 255, 255, 0.72);
  --reg-border: rgba(255, 255, 255, 0.14);
}


.lb-hero {
    width: 100%;
    padding: 60px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;

    /* YOUR EXACT COLORS */
    background: radial-gradient(circle at center,
            hsl(197, 9%, 15%) 0%,
            /* soft center glow */
            hsl(200, 33%, 4%) 70%,
            /* deep outer edge */
            hsl(200, 33%, 4%) 100%);
}

.lb-hero-logo {
    width: 520px;
    /* feel free to adjust */
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 1));
}

.lb-hero-logo {
    width: 420px;
    /* adjust size */
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 1));
}
.lb-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* top grey strip for logo */

.lb-top-strip {
    background-color: #d9d9d9;
    padding: 12px 24px;
}




/* Base */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;

  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%,
      rgba(244, 182, 12, 0.10),
      rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #1e2127 0%, #14161a 100%);

  font-family: "Oswald", system-ui, -apple-system, sans-serif;
}

/* Page wrapper */
.pay-shell {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 16px 40px;
}

/* Main card */
.pay-card {
  width: 100%;
  max-width: 520px;

  border-radius: 20px;
  padding: 22px 22px 24px;

  background:
    radial-gradient(circle at top left,
      rgba(244, 182, 12, 0.12),
      rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg,
      var(--reg-graphite-1) 0%,
      var(--reg-graphite-2) 40%,
      var(--reg-graphite-3) 100%);

  border: 1px solid var(--reg-border);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.75),
    0 0 10px rgba(244, 182, 12, 0.12);
}

/* Header */
.pay-kicker {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-block;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0.95;
}

.pay-title {
  margin: 10px 0 6px;
  font-family: "Jomolhari", serif;
  font-size: 24px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
}

.pay-subtitle {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

/* Divider */
.pay-divider {
  margin: 16px 0;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
}

/* Summary box */
.pay-summary {
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.10);
  padding: 14px 14px;
}

.pay-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pay-row:last-child {
  border-bottom: none;
}

.pay-label {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.pay-value {
  font-family: "Jomolhari", serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
}

.pay-value.is-price {
  color: rgba(244, 182, 12, 0.95);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.10em;
}

/* Button – match reg-btn */
.pay-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  margin-top: 16px;

  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #ffffff;
  background: linear-gradient(135deg,
    #3a3e48,
    #5b5138,
    #8e7a4a);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.75),
    0 0 10px rgba(244, 182, 12, 0.20);

  cursor: pointer;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    filter 0.15s ease-out;
}

.pay-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.85),
    0 0 14px rgba(244, 182, 12, 0.28);
  filter: brightness(1.03);
}

.pay-btn:active {
  transform: translateY(0);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.85),
    0 0 12px rgba(244, 182, 12, 0.20);
}

.pay-btn[disabled],
.pay-btn.is-disabled {
  opacity: 0.50;
  cursor: not-allowed;
  transform: none !important;
  filter: none !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.60);
}

/* Output */
.pay-out {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .10);
  color: rgba(255, 255, 255, .80);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
  .pay-shell {
    padding-top: 20px;
  }

  .pay-card {
    padding: 18px 16px 22px;
  }

  .pay-title {
    font-size: 22px;
  }
}

@media (min-width: 992px) {
  .pay-card {
    max-width: 560px;
  }

  .pay-title {
    font-size: 26px;
  }

  .pay-subtitle {
    font-size: 14px;
  }
}
