:root {
  --lux-bg: #11161d;
  --lux-bg-2: #1e2731;
  --lux-charcoal: #15181d;
  --lux-panel: rgba(17, 22, 29, 0.82);
  --lux-panel-soft: rgba(24, 30, 38, 0.72);
  --lux-gold: #c7a062;
  --lux-gold-light: #e8ca8e;
  --lux-cream: #f7f1e7;
  --lux-white: #ffffff;
  --lux-muted: rgba(255,255,255,0.70);
  --lux-border: rgba(199,160,98,0.34);
  --lux-radius: 24px;
}

.glp-luxury-dashboard-body {
  margin: 0;
  min-height: 100vh;
  color: var(--lux-white);
  background:
    radial-gradient(circle at 72% 18%, rgba(199,160,98,0.26), transparent 26%),
    radial-gradient(circle at 48% 24%, rgba(199,160,98,0.10), transparent 22%),
    linear-gradient(180deg, #10151b 0%, #1b232d 58%, #121820 100%) !important;
  font-family: Inter, Arial, sans-serif;
}

.glp-lux-topbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  border-bottom: 1px solid rgba(199,160,98,0.42);
  background: rgba(10,13,17,0.82);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.glp-lux-brand img {
  height: 48px;
  width: auto;
  display: block;
}

.glp-lux-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.glp-lux-nav a,
.glp-lux-store {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 14px;
  background: rgba(255,255,255,0.04);
}

.glp-lux-shell {
  width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 34px 0 70px;
  position: relative;
  isolation: isolate;
}

.glp-lux-shell::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  background: url("/static/brand/web/giftlist-pro-logo-stacked-transparent.png") no-repeat center / contain;
  opacity: 0.17;
  z-index: -1;
  pointer-events: none;
}

.glp-lux-hero {
  min-height: 238px;
  display: flex;
  align-items: center;
  padding: 28px 0 34px;
}

.glp-lux-hero-copy {
  max-width: 650px;
}

.glp-lux-kicker,
.glp-lux-label {
  color: var(--lux-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.glp-lux-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -0.055em;
  margin: 14px 0;
  color: #fff;
}

.glp-lux-hero h1 span {
  color: var(--lux-gold-light);
}

.glp-lux-hero p {
  max-width: 560px;
  color: var(--lux-muted);
  font-size: 18px;
  line-height: 1.6;
}

.glp-lux-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.glp-lux-btn {
  border-radius: 999px;
  padding: 13px 24px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--lux-border);
}

.glp-lux-btn-outline {
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.glp-lux-btn-gold {
  color: #171717;
  background: linear-gradient(135deg, #e8ca8e, #c7a062);
  box-shadow: 0 14px 34px rgba(199,160,98,0.25);
}

.glp-lux-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.glp-lux-kpi,
.glp-lux-panel {
  border: 1px solid var(--lux-border);
  background: linear-gradient(145deg, rgba(14,18,23,0.92), rgba(26,32,39,0.78));
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
  backdrop-filter: blur(10px);
}

.glp-lux-kpi {
  border-radius: 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
}

.glp-lux-kpi-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lux-border);
  color: var(--lux-gold-light);
  font-size: 28px;
  background: rgba(199,160,98,0.08);
}

.glp-lux-kpi-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
  margin: 8px 0;
}

.glp-lux-kpi p {
  margin: 0;
  color: var(--lux-muted);
}

.glp-lux-panel {
  border-radius: 24px;
  padding: 22px;
  margin-top: 18px;
}

.glp-lux-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.glp-lux-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  margin: 4px 0 0;
  color: #fff;
}

.glp-lux-panel p {
  color: var(--lux-muted);
  margin: 6px 0 0;
}

.glp-lux-count,
.glp-lux-small-link {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  font-weight: 800;
}

.glp-lux-small-link {
  cursor: pointer;
}

.glp-lux-table {
  width: 100%;
  color: #fff;
  border-collapse: collapse;
  overflow: hidden;
}

.glp-lux-table th {
  color: var(--lux-gold-light);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(199,160,98,0.22);
  background: rgba(199,160,98,0.12);
}

.glp-lux-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.78);
}

.glp-lux-list-cell {
  display: flex;
  align-items: center;
  gap: 13px;
}

.glp-lux-list-cell strong {
  color: #fff;
}

.glp-lux-list-cell small {
  display: block;
  color: rgba(255,255,255,0.48);
  margin-top: 3px;
}

.glp-lux-row-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(199,160,98,0.24);
  background: rgba(199,160,98,0.08);
}

.glp-lux-status {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 900;
}

.glp-lux-status-open {
  background: rgba(50,160,105,0.80);
  color: #fff;
}

.glp-lux-status-closed {
  background: rgba(125,137,150,0.60);
  color: #fff;
}

.glp-lux-manage,
.glp-lux-step-button {
  color: var(--lux-gold-light);
  text-decoration: none;
  border: 1px solid rgba(199,160,98,0.38);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  display: inline-flex;
}

.glp-lux-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.glp-lux-step {
  border: 1px solid var(--lux-border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(22,27,33,0.94), rgba(35,31,25,0.80));
  padding: 24px;
  min-height: 214px;
  position: relative;
  overflow: hidden;
}

.glp-lux-step::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(199,160,98,0.35), transparent 68%);
}

.glp-lux-step-number {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lux-border);
  color: var(--lux-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin-bottom: 18px;
}

.glp-lux-step h3 {
  color: var(--lux-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.glp-lux-step small {
  color: rgba(255,255,255,0.48);
}

.glp-lux-step-pill {
  display: inline-flex;
  margin-top: 14px;
  color: var(--lux-gold-light);
  background: rgba(199,160,98,0.10);
  border: 1px solid rgba(199,160,98,0.24);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
}

.glp-lux-integrations {
  border-top: 1px solid rgba(199,160,98,0.22);
  margin-top: 22px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1.15fr 1.4fr auto;
  gap: 18px;
  align-items: end;
}

.glp-lux-copybox {
  display: flex;
  gap: 8px;
}

.glp-lux-copybox input {
  flex: 1;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px 14px;
}

.glp-lux-copybox button {
  color: #171717;
  background: linear-gradient(135deg, #e8ca8e, #c7a062);
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 900;
}

.glp-lux-secondary-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.glp-lux-secondary-actions a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  padding: 9px 12px;
  white-space: nowrap;
}

.glp-lux-empty {
  color: var(--lux-muted);
  border: 1px dashed rgba(199,160,98,0.25);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
}

@media (max-width: 980px) {
  .glp-lux-topbar,
  .glp-lux-nav,
  .glp-lux-panel-head,
  .glp-lux-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .glp-lux-topbar {
    height: auto;
    padding: 18px;
    gap: 16px;
  }

  .glp-lux-shell {
    width: min(100%, calc(100vw - 24px));
  }

  .glp-lux-kpis,
  .glp-lux-steps,
  .glp-lux-integrations {
    grid-template-columns: 1fr;
  }

  .glp-lux-table-wrap {
    overflow-x: auto;
  }

  .glp-lux-shell::before {
    width: 420px;
    height: 420px;
  }
}

/* STEP147E-B premium settings page */
.glp-lux-settings-body .glp-lux-shell::before {
  top: 120px;
  opacity: 0.13;
}

.glp-lux-settings-shell {
  padding-top: 38px;
}

.glp-lux-settings-hero {
  min-height: 210px;
  padding-bottom: 22px;
}

.glp-lux-settings-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: 22px;
  align-items: start;
}

.glp-lux-logo-panel {
  min-height: 100%;
}

.glp-lux-logo-preview {
  border: 1px solid rgba(199,160,98,0.24);
  background: rgba(255,255,255,0.05);
  border-radius: 22px;
  padding: 22px;
  min-height: 168px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.glp-lux-logo-preview img {
  max-width: 260px;
  max-height: 115px;
  object-fit: contain;
}

.glp-lux-logo-placeholder {
  display: grid;
  gap: 12px;
  justify-items: center;
  color: rgba(255,255,255,0.58);
  text-align: center;
}

.glp-lux-logo-placeholder img {
  opacity: 0.55;
  max-height: 96px;
}

.glp-lux-form-block {
  display: grid;
  gap: 10px;
}

.glp-lux-field-label {
  display: block;
  color: var(--lux-gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 8px;
}

.glp-lux-file-input,
.glp-lux-settings-form input {
  width: 100%;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 15px;
  padding: 13px 15px;
}

.glp-lux-file-input::file-selector-button {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  margin-right: 12px;
  background: linear-gradient(135deg, #e8ca8e, #c7a062);
  color: #171717;
  font-weight: 900;
}

.glp-lux-form-block small {
  color: rgba(255,255,255,0.48);
}

.glp-lux-danger-link {
  border: 1px solid rgba(255,110,110,0.36);
  background: rgba(255,80,80,0.06);
  color: #ffb0a8;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
}

.glp-lux-settings-form {
  display: grid;
  gap: 22px;
}

.glp-lux-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.glp-lux-form-full {
  grid-column: 1 / -1;
}

.glp-lux-theme-note {
  border: 1px solid rgba(199,160,98,0.22);
  background: rgba(199,160,98,0.07);
  border-radius: 20px;
  padding: 18px;
}

.glp-lux-theme-note p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.66);
}

.glp-lux-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .glp-lux-settings-grid,
  .glp-lux-form-grid {
    grid-template-columns: 1fr;
  }
}

/* STEP147F-B premium billing page */
.glp-lux-billing-body .glp-lux-shell::before {
  top: 120px;
  opacity: 0.12;
}

.glp-lux-billing-shell {
  padding-top: 38px;
}

.glp-lux-billing-hero {
  min-height: 210px;
  padding-bottom: 24px;
}

.glp-lux-alert-panel {
  border-color: rgba(255,120,100,0.38);
  background: rgba(140,45,35,0.18);
}

.glp-lux-alert-panel p,
.glp-lux-note-panel p,
.glp-lux-confirm-panel p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.74);
}

.glp-lux-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.glp-lux-status-grid strong {
  display: block;
  color: #fff;
  font-size: 22px;
  margin-top: 8px;
}

.glp-lux-status-pending {
  background: rgba(199,160,98,0.28);
  color: #fff;
}

.glp-lux-status-test {
  background: rgba(80,170,210,0.26);
  color: #dff6ff;
}

.glp-lux-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin-top: 22px;
}

.glp-lux-plan-card {
  border: 1px solid rgba(199,160,98,0.34);
  background: linear-gradient(145deg, rgba(14,18,23,0.92), rgba(26,32,39,0.78));
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.glp-lux-plan-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(199,160,98,0.30), transparent 68%);
  pointer-events: none;
}

.glp-lux-plan-card-featured {
  border-color: rgba(232,202,142,0.52);
}

.glp-lux-plan-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.glp-lux-plan-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #fff;
  font-size: 40px;
  margin: 6px 0 0;
}

.glp-lux-plan-price {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--lux-gold-light);
  font-size: 48px;
  line-height: 1;
  white-space: nowrap;
}

.glp-lux-plan-subtitle {
  color: rgba(255,255,255,0.72);
  margin: 18px 0 8px;
  min-height: 48px;
}

.glp-lux-plan-trial {
  color: rgba(255,255,255,0.52);
  font-size: 14px;
  margin-bottom: 20px;
}

.glp-lux-plan-features {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.78);
}

.glp-lux-plan-features li::before {
  content: "✦";
  color: var(--lux-gold-light);
  margin-right: 9px;
}

.glp-lux-plan-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  display: inline-flex;
}

.glp-lux-confirm-panel a {
  color: var(--lux-gold-light);
  font-weight: 900;
}

@media (max-width: 980px) {
  .glp-lux-status-grid,
  .glp-lux-plans {
    grid-template-columns: 1fr;
  }
}

/* STEP147G-B premium event detail page */
.glp-lux-event-shell {
  padding-top: 38px;
}

.glp-lux-event-shell::before {
  top: 90px;
  opacity: 0.13;
}

.glp-lux-event-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  min-height: 210px;
  padding: 36px 0 26px;
}

.glp-lux-event-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .95;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 12px 0;
}

.glp-lux-event-hero h1 span {
  color: var(--lux-gold-light);
  display: block;
}

.glp-lux-event-hero p {
  color: rgba(255,255,255,0.70);
  font-size: 17px;
}

.glp-lux-event-status-box {
  padding-top: 16px;
}

.glp-lux-event-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.glp-lux-event-grid {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(320px,0.65fr);
  gap: 20px;
  align-items: stretch;
}

.glp-lux-code-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin: 16px 0 22px;
}

.glp-lux-code-grid div {
  border: 1px solid rgba(199,160,98,0.18);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 14px;
}

.glp-lux-code-grid span {
  display: block;
  color: var(--lux-gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 7px;
}

.glp-lux-code-grid strong {
  color: #fff;
  overflow-wrap: anywhere;
}

.glp-lux-tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.glp-lux-actions-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

.glp-lux-actions-panel form {
  margin: 0;
}

.glp-lux-gift-card-box {
  border: 1px solid rgba(199,160,98,0.20);
  background: rgba(199,160,98,0.07);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.glp-lux-gift-card-box p,
.glp-lux-gift-card-box small {
  color: rgba(255,255,255,0.68);
  margin: 0;
}

.glp-lux-mini-stats {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}

.glp-lux-inline-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
}

@media (max-width: 1100px) {
  .glp-lux-event-kpis,
  .glp-lux-event-grid {
    grid-template-columns: 1fr;
  }

  .glp-lux-event-hero {
    flex-direction: column;
  }

  .glp-lux-code-grid {
    grid-template-columns: 1fr;
  }
}
