@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&display=swap');

.xwrap-91 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px 70px;
  font-family: "Bruno Ace", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #020617;
}

/* PAGE TITLE */

.xwrap-91 h1 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0f172a;
  text-align: center;
  margin-bottom: 30px;
}

/* COUPON CARD GRID: 3 COLUMNS ON DESKTOP */

.xgrid-22 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px 20px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(64,188,216,0.45);
  box-shadow: 0 10px 25px rgba(15,23,42,0.07);
  position: relative;
  overflow: hidden;
}

.xgrid-22::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(64,188,216,0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(46,138,165,0.16), transparent 50%);
  opacity: 1;
  pointer-events: none;
}

.xgrid-22 > * {
  position: relative;
  z-index: 1;
}

/* LEFT HORIZONTAL LABEL COLUMN */

.xcol-label-21 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 12px;
  border-right: 1px solid rgba(64,188,216,0.45);
}

.xlabel-wrap-23 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.xlabel-main-24 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2e8aa5;
}

.xlabel-sub-25 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #40bcd8;
}

/* MAIN TEXT COLUMN */

.xcol-main-44 h2 {
  font-size: 26px;
  margin-bottom: 6px;
  color: #0f172a;
}

.xcol-main-44 p {
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
}

/* CODE COLUMN */

.xcol-code-55 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
}

.xcoupon-shell-66 {
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: radial-gradient(circle at 0 0, rgba(64,188,216,0.18), #f9fafb);
  border: 1px solid #2e8aa5;
}

.xcoupon-shell-66 p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2e8aa5;
  margin: 0;
}

.xcoupon-code-77 {
  font-family: "Bruno Ace", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: #0f172a;
  white-space: nowrap;
}

/* COPY BUTTON */

.xcopy-btn-88 {
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: linear-gradient(120deg, #40bcd8, #2e8aa5);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow:
    0 0 0 1px rgba(46,138,165,0.6),
    0 0 18px rgba(64,188,216,0.55);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s ease;
  white-space: nowrap;
}

.xcopy-btn-88 span {
  font-size: 12px;
}

.xcopy-btn-88:hover {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(64,188,216,0.9),
    0 0 30px rgba(46,138,165,0.9);
}

.xcopy-btn-88:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 0 0 1px rgba(46,138,165,0.9),
    0 0 16px rgba(64,188,216,0.8);
}

/* COPY STATUS TEXT */

.xcopy-status-99 {
  font-size: 11px;
  color: #2e8aa5;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  height: 14px;
}

/* CTA BANNER */

.xcta-wrap-10 {
  margin-top: 40px;
  padding: 24px 20px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(64,188,216,0.28), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(46,138,165,0.28), transparent 50%),
    linear-gradient(135deg, #ffffff, #e5f4f8);
  border: 1px solid #2e8aa5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.xcta-left-11 {
  max-width: 520px;
}

.xcta-eyebrow-12 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #2e8aa5;
  margin-bottom: 4px;
}

.xcta-title-13 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 4px;
}

.xcta-sub-14 {
  font-size: 13px;
  color: #4b5563;
}

.xcta-btn-15 {
  border-radius: 999px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  background: linear-gradient(120deg, #40bcd8, #2e8aa5);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 0 0 1px rgba(46,138,165,0.9),
    0 0 30px rgba(64,188,216,0.8);
  transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.18s ease;
  text-decoration: none;
}

.xcta-btn-15:hover {
  filter: brightness(1.07);
  box-shadow:
    0 0 0 1px rgba(46,138,165,1),
    0 0 40px rgba(64,188,216,1);
}

.xcta-btn-15:active {
  transform: translateY(1px) scale(0.98);
}

.xcta-note-16 {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .xgrid-22 {
    grid-template-columns: minmax(0, 1fr);
  }
  .xcol-label-21 {
    display: none;
  }
}

@media (max-width: 640px) {
  .xgrid-22 {
    grid-template-columns: minmax(0, 1fr);
  }
  .xcol-code-55 {
    align-items: flex-start;
  }
  .xcoupon-shell-66 {
    flex-wrap: wrap;
    border-radius: 14px;
  }
  .xcoupon-code-77 {
    letter-spacing: 0.15em;
  }
  .xwrap-91 h1 {
    font-size: 26px;
  }
}
.xlabel-main-24 {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -2px;
    text-align: center;
}