/* ═══════════════════════════════════════════════════════════════════
   SmartTicket Design System
   Colors: Space Gray (#1A1A1A / #3A3A3C) + Yellow (#F5C518)
   Font: Inter
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --c-dark:        #1A1A1A;
  --c-dark-2:      #2C2C2E;
  --c-gray:        #3A3A3C;
  --c-gray-mid:    #6B7280;
  --c-gray-light:  #9CA3AF;
  --c-yellow:      #F5C518;
  --c-yellow-dark: #D4A914;
  --c-yellow-pale: #FFFBEB;
  --c-bg:          #F5F5F7;
  --c-surface:     #FFFFFF;
  --c-border:      #E5E7EB;
  --c-text:        #111827;
  --c-text-2:      #4B5563;
  --c-success:     #059669;
  --c-danger:      #DC2626;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-card-hover: 0 20px 48px rgba(0,0,0,.14);

  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }


/* ── Navbar ──────────────────────────────────────────────────────── */
.st-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: var(--nav-h);
}

.st-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.st-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.st-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}
.st-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}
.st-logo-accent { color: var(--c-yellow); }

/* Nav links */
.st-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.st-nav-link {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.st-nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }

/* Nav actions */
.st-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Buttons in nav */
.st-btn-ghost {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .15s;
}
.st-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}

.st-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.st-btn-primary:hover {
  background: var(--c-yellow-dark);
  color: var(--c-dark);
  transform: translateY(-1px);
}

/* Avatar dropdown */
.st-dropdown { position: relative; }
.st-avatar-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 4px 10px 4px 4px;
  cursor: pointer;
  transition: background .15s;
}
.st-avatar-btn:hover { background: rgba(255,255,255,.16); }
.st-avatar-initials {
  width: 28px; height: 28px;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.st-chevron { color: rgba(255,255,255,.6); font-size: 11px; }

.st-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .15s;
}
.st-dropdown-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.st-dropdown-header {
  padding: 8px 10px 2px;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text);
}
.st-dropdown-sub {
  padding: 0 10px 8px;
  font-size: 12px;
  color: var(--c-gray-mid);
}
.st-dropdown-divider {
  height: 1px; background: var(--c-border); margin: 4px 0;
}
.st-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--c-text-2);
  border-radius: var(--radius-sm);
  transition: background .12s, color .12s;
}
.st-dropdown-item:hover { background: var(--c-bg); color: var(--c-text); }
.st-dropdown-danger { color: var(--c-danger) !important; }
.st-dropdown-danger:hover { background: #FEF2F2 !important; }

/* Hamburger */
.st-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.st-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .2s;
}
.st-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.st-hamburger.active span:nth-child(2) { opacity: 0; }
.st-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.st-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--c-dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 8px 16px 16px;
}
.st-mobile-menu.open { display: flex; }
.st-mobile-link {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .12s;
}
.st-mobile-link:hover { color: #fff; }
.st-mobile-danger { color: #F87171 !important; }
.st-mobile-cta {
  margin-top: 8px;
  background: var(--c-yellow);
  color: var(--c-dark) !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  border-bottom: none !important;
}


/* ── Flash Alerts ─────────────────────────────────────────────────  */
.st-alerts {
  max-width: 1280px;
  margin: 16px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
}
.st-alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.st-alert-danger  { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.st-alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.st-alert-info    { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.st-alert-close {
  background: none; border: none; cursor: pointer;
  opacity: .6; font-size: 16px; padding: 0 4px;
  transition: opacity .12s;
}
.st-alert-close:hover { opacity: 1; }


/* ── Page wrapper ────────────────────────────────────────────────── */
.st-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.st-page-wide {
  max-width: 100%;
  padding: 0 0 80px;
}


/* ── Hero Section ────────────────────────────────────────────────── */
.st-hero {
  background: var(--c-dark);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.st-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(245,197,24,.15) 0%, transparent 70%);
  pointer-events: none;
}
.st-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.25);
  color: var(--c-yellow);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: .4px;
  margin-bottom: 24px;
}
.st-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.st-hero h1 em {
  font-style: normal;
  color: var(--c-yellow);
}
.st-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0 0 36px;
}
.st-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.st-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  transition: background .15s, transform .12s;
}
.st-hero-cta:hover {
  background: var(--c-yellow-dark);
  color: var(--c-dark);
  transform: translateY(-2px);
}
.st-hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.2);
  transition: all .15s;
}
.st-hero-cta-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
}


/* ── Trust bar ───────────────────────────────────────────────────── */
.st-trust-bar {
  background: var(--c-dark-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0;
}
.st-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.st-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.06);
}
.st-trust-item:last-child { border-right: none; }
.st-trust-item i { color: var(--c-yellow); font-size: 15px; }


/* ── Section headings ────────────────────────────────────────────── */
.st-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 0;
}
.st-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.st-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.4px;
  margin: 0;
}
.st-section-title span {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--c-yellow);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}
.st-section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gray-mid);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .12s;
}
.st-section-link:hover { color: var(--c-text); }


/* ── Featured Hero Card ──────────────────────────────────────────── */
.st-featured-card {
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 320px;
  transition: box-shadow .2s, transform .2s;
  border: 1px solid var(--c-border);
}
.st-featured-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.st-featured-img {
  position: relative;
  background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3C 100%);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.st-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.st-featured-img-placeholder {
  opacity: .15;
  font-size: 80px;
  color: var(--c-yellow);
}
.st-featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.st-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.st-featured-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-featured-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--c-gray-mid);
}
.st-featured-meta-row i { color: var(--c-yellow); font-size: 14px; }
.st-featured-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 16px 0 12px;
}
.st-featured-desc {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 24px;
}
.st-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}
.st-from-price {
  font-size: 12px;
  color: var(--c-gray-mid);
  margin-bottom: 2px;
  font-weight: 500;
}
.st-price-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
}
.st-price-value span {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-gray-mid);
}


/* ── Event Grid ──────────────────────────────────────────────────── */
.st-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .st-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .st-grid { grid-template-columns: 1fr; } }


/* ── Event Card ──────────────────────────────────────────────────── */
.st-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.st-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.st-card-img-wrap {
  position: relative;
  height: 186px;
  background: var(--c-dark);
  overflow: hidden;
}
.st-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.st-card:hover .st-card-img-wrap img { transform: scale(1.04); }
.st-card-img-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3C 100%);
  font-size: 48px;
  opacity: .25;
  color: var(--c-yellow);
}
.st-card-date-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(26,26,26,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
  line-height: 1.1;
}
.st-card-date-day {
  font-size: 18px;
  font-weight: 800;
  display: block;
}
.st-card-date-mon {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--c-yellow);
}
.st-sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-sold-out-label {
  background: var(--c-danger);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.st-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.st-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.2px;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
.st-card-venue {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-gray-mid);
  margin-bottom: 14px;
}
.st-card-venue i { color: var(--c-yellow); font-size: 13px; }
.st-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}
.st-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.st-card-price-from {
  font-size: 11px;
  color: var(--c-gray-mid);
  font-weight: 500;
  display: block;
  margin-bottom: 1px;
}
.st-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .15s, transform .12s;
}
.st-card-btn:hover {
  background: var(--c-yellow-dark);
  color: var(--c-dark);
  transform: translateY(-1px);
}


/* ── Empty state ─────────────────────────────────────────────────── */
.st-empty {
  text-align: center;
  padding: 72px 24px;
  color: var(--c-gray-mid);
}
.st-empty i { font-size: 56px; opacity: .3; }
.st-empty p { margin-top: 16px; font-size: 16px; }


/* ── Auth pages ──────────────────────────────────────────────────── */
.st-auth-wrap {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.st-auth-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  padding: 40px;
}
.st-auth-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: 20px;
}
.st-auth-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.4px;
  margin: 0 0 4px;
}
.st-auth-sub {
  font-size: 14px;
  color: var(--c-gray-mid);
  margin: 0 0 28px;
}

/* Form controls */
.st-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-2);
  margin-bottom: 6px;
}
.st-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--c-text);
  background: var(--c-surface);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.st-input:focus {
  border-color: var(--c-yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,.15);
}
.st-input::placeholder { color: var(--c-gray-light); }
.st-form-group { margin-bottom: 18px; }

.st-submit {
  width: 100%;
  padding: 12px;
  background: var(--c-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, transform .1s;
}
.st-submit:hover {
  background: var(--c-gray);
  transform: translateY(-1px);
}
.st-auth-divider {
  text-align: center;
  font-size: 13px;
  color: var(--c-gray-mid);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}
.st-auth-divider a { color: var(--c-dark); font-weight: 700; }


/* ── Checkout & payment pages ────────────────────────────────────── */
.st-checkout-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.st-page-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.st-surface {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.st-surface-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border);
}


/* ── Event detail page ───────────────────────────────────────────── */
.st-event-hero {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
}
.st-event-hero-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-gray) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: var(--c-yellow);
  opacity: .25;
  margin-bottom: 28px;
}
.st-event-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--c-text);
  margin: 0 0 16px;
}
.st-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--c-text-2);
  font-weight: 500;
}
.st-meta-pill i { color: var(--c-yellow); font-size: 14px; }
.st-ticket-widget {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  box-shadow: var(--shadow-md);
}
.st-widget-title {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--c-text);
}
.st-ticket-row {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 10px;
  transition: border-color .15s, background .15s;
}
.st-ticket-row:hover { border-color: var(--c-yellow); background: var(--c-yellow-pale); }
.st-ticket-name { font-size: 14px; font-weight: 700; color: var(--c-text); }
.st-ticket-desc { font-size: 12px; color: var(--c-gray-mid); margin: 2px 0; }
.st-ticket-price { font-size: 16px; font-weight: 800; color: var(--c-text); margin-top: 4px; }
.st-ticket-avail { font-size: 11px; color: var(--c-gray-light); }
.st-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: all .12s;
  color: var(--c-text);
}
.st-qty-btn:hover { border-color: var(--c-yellow); background: var(--c-yellow); color: var(--c-dark); }
.st-qty-display {
  width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.st-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin: 16px 0;
}
.st-total-label { font-size: 14px; color: var(--c-gray-mid); font-weight: 500; }
.st-total-amount { font-size: 22px; font-weight: 800; color: var(--c-text); }
.st-checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--c-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s, transform .12s;
}
.st-checkout-btn:hover:not(:disabled) {
  background: var(--c-gray);
  transform: translateY(-1px);
}
.st-checkout-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}


/* ── Admin mobile tab bar ────────────────────────────────────────── */
.st-admin-tabbar {
  display: none;
  overflow-x: auto;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 0 8px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.st-admin-tabbar::-webkit-scrollbar { display: none; }
.st-admin-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gray-mid);
  border-bottom: 2px solid transparent;
  transition: color .12s, border-color .12s;
  white-space: nowrap;
}
.st-admin-tab:hover { color: var(--c-text); }
.st-admin-tab.active {
  color: var(--c-dark);
  border-bottom-color: var(--c-yellow);
}
@media (max-width: 768px) {
  .st-admin-tabbar { display: flex; }
}

/* ── Admin layout ────────────────────────────────────────────────── */
.st-admin-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
@media (max-width: 768px) {
  .st-admin-wrap { grid-template-columns: 1fr; }
  .st-admin-sidebar { display: none; }
}
.st-admin-sidebar {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.st-sidebar-label,
.st-sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--c-gray-mid);
  padding: 8px 12px 4px;
}
.st-sidebar-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-2);
  transition: all .12s;
}
.st-sidebar-link:hover { background: var(--c-bg); color: var(--c-text); }
.st-sidebar-link.active {
  background: var(--c-yellow-pale);
  color: var(--c-dark);
  font-weight: 700;
}
.st-sidebar-link.active i { color: var(--c-yellow-dark); }
.st-sidebar-link i { font-size: 15px; color: var(--c-gray-mid); }
.st-sidebar-divider { height: 1px; background: var(--c-border); margin: 8px 0; }

/* ── Admin page header ───────────────────────────────────────────── */
.st-admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.st-admin-page-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.4px;
  margin: 0 0 2px;
}
.st-admin-page-sub {
  font-size: 13px;
  color: var(--c-gray-mid);
  margin: 0;
}
.st-admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.st-admin-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}

/* Admin stat cards */
.st-stat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.st-stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.st-stat-icon-yellow { background: var(--c-yellow-pale); color: var(--c-yellow-dark); }
.st-stat-icon-dark   { background: #F3F4F6; color: var(--c-dark); }
.st-stat-icon-alert  { background: #FEF3C7; color: #92400E; }
.st-stat-card-yellow { border-top: 3px solid var(--c-yellow); }
.st-stat-card-alert  { border-top: 3px solid #F59E0B; background: #FFFBEB; }
.st-stat-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-dark);
  background: var(--c-yellow);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: background .12s;
}
.st-stat-action:hover { background: var(--c-yellow-dark); color: var(--c-dark); }
.st-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
}
.st-stat-label {
  font-size: 13px;
  color: var(--c-gray-mid);
  margin-top: 4px;
}


/* ── Stat grid ───────────────────────────────────────────────────── */
.st-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) { .st-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .st-stat-grid { grid-template-columns: 1fr 1fr; } }

/* ── Data table ──────────────────────────────────────────────────── */
.st-table-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.st-mono-code {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  background: var(--c-bg);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--c-text);
  white-space: nowrap;
}
.st-table-amount { font-weight: 700; color: var(--c-text); white-space: nowrap; }
.st-table-event-name { font-weight: 600; color: var(--c-text); }
.st-table-empty { color: var(--c-gray-light); }
.st-table-empty-row {
  text-align: center;
  color: var(--c-gray-mid);
  padding: 48px 16px !important;
}
@media (max-width: 640px) {
  .st-col-hide-sm { display: none; }
}
.st-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.st-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--c-gray-mid);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.st-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-2);
  vertical-align: middle;
}
.st-table tr:last-child td { border-bottom: none; }
.st-table tr:hover td { background: #FAFAFA; }
.st-table td strong { color: var(--c-text); font-weight: 600; }


/* ── Badges ──────────────────────────────────────────────────────── */
.st-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2px;
}
.st-badge-green  { background: #DCFCE7; color: #166534; }
.st-badge-yellow { background: #FEF9C3; color: #854D0E; }
.st-badge-gray   { background: #F3F4F6; color: #374151; }
.st-badge-red    { background: #FEE2E2; color: #991B1B; }
.st-badge-blue   { background: #DBEAFE; color: #1E40AF; }


/* ── Action button (outline, small) ─────────────────────────────── */
.st-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .12s;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-text-2);
}
.st-btn-sm:hover { background: var(--c-bg); color: var(--c-text); border-color: #9CA3AF; }
.st-btn-sm-primary {
  background: var(--c-yellow);
  color: var(--c-dark);
  border-color: transparent;
  font-weight: 700;
}
.st-btn-sm-primary:hover { background: var(--c-yellow-dark); color: var(--c-dark); }
.st-btn-sm-danger  { color: var(--c-danger); }
.st-btn-sm-danger:hover { background: #FEF2F2; border-color: #FECACA; }


/* ── Footer ──────────────────────────────────────────────────────── */
.st-footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 80px;
}
.st-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.st-footer-brand { flex: 1; min-width: 200px; }
.st-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin: 12px 0 0;
}
.st-footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.st-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}
.st-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}
.st-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .12s;
}
.st-footer-col a:hover { color: #fff; }
.st-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 10px;
}
.st-footer-badges { display: flex; gap: 16px; }
.st-footer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.st-footer-badge i { color: var(--c-yellow); }


/* ── Responsive overrides ────────────────────────────────────────── */
@media (max-width: 900px) {
  .st-featured-card {
    grid-template-columns: 1fr;
  }
  .st-featured-img { min-height: 200px; }
}

@media (max-width: 640px) {
  .st-hero h1 { letter-spacing: -0.8px; }
  .st-hero p  { font-size: 15px; }
  .st-section { padding: 40px 16px 0; }
  .st-page    { padding: 0 16px 60px; }
  .st-auth-card { padding: 28px 20px; }
  .st-featured-body { padding: 24px 20px; }
  .st-trust-item { padding: 12px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .st-footer-inner { gap: 32px; }
  .st-footer-links { gap: 28px; }
}


/* ═══════════════════════════════════════════════════════════════════
   Payment Success Page
   ═══════════════════════════════════════════════════════════════════ */

.st-success-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ── Header ─────────────────────────────────────────────────────── */
.st-success-header {
  text-align: center;
  padding: 0 0 36px;
}
.st-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 10px rgba(245,197,24,.15);
}
.st-success-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-text);
  letter-spacing: -0.6px;
  margin: 0 0 10px;
}
.st-success-sub {
  font-size: 16px;
  color: var(--c-text-2);
  margin: 0 0 10px;
}
.st-success-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-gray-mid);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 50px;
  padding: 5px 14px;
}
.st-success-email i { color: var(--c-yellow-dark); }

/* ── Event Summary Card ──────────────────────────────────────────── */
.st-success-event-card {
  background: var(--c-dark);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.st-success-event-info { flex: 1; min-width: 0; }
.st-success-event-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
  line-height: 1.2;
}
.st-success-event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.st-success-event-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.st-success-event-meta i { color: var(--c-yellow); font-size: 13px; }
.st-success-event-time {
  color: rgba(255,255,255,.35);
  margin-left: 2px;
}
.st-success-event-ref {
  text-align: right;
  flex-shrink: 0;
}
.st-success-ref-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.st-success-ref-code {
  font-size: 13px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--c-yellow);
  letter-spacing: .5px;
}
.st-success-ticket-count {
  display: inline-block;
  margin-top: 10px;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
}

/* ── Section Title ───────────────────────────────────────────────── */
.st-success-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}
.st-success-section-title i { color: var(--c-yellow-dark); }

/* ── Issued Ticket Cards ─────────────────────────────────────────── */
.st-issued-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.st-issued-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.st-issued-card:hover { box-shadow: var(--shadow-md); }

.st-issued-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-border);
}
.st-issued-type {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
}
.st-issued-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .3px;
}
.st-issued-valid {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.st-issued-used {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.st-issued-qr-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 24px 12px;
}
.st-issued-qr-img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-sm);
  display: block;
  image-rendering: pixelated;
}

.st-issued-code {
  text-align: center;
  font-size: 10px;
  font-family: 'Courier New', monospace;
  color: var(--c-gray-light);
  padding: 0 18px 14px;
  word-break: break-all;
  letter-spacing: .3px;
}
.st-issued-holder-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 14px;
  border-top: 1px solid var(--c-border);
}
.st-issued-holder-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
}
.st-issued-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-dark);
}

.st-issued-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 18px;
}
.st-issued-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: background .15s, transform .1s;
}
.st-issued-download:hover {
  background: var(--c-yellow-dark);
  color: var(--c-dark);
  transform: translateY(-1px);
}
.st-issued-view-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  background: transparent;
  color: var(--c-text-2);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  transition: border-color .15s, color .15s;
}
.st-issued-view-qr:hover {
  border-color: var(--c-dark);
  color: var(--c-dark);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.st-success-footer {
  text-align: center;
}
.st-success-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  background: transparent;
  color: var(--c-text-2);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: all .15s;
}
.st-success-browse-btn:hover {
  background: var(--c-dark);
  color: #fff;
  border-color: var(--c-dark);
}

/* ── Success Page Responsive ─────────────────────────────────────── */
@media (max-width: 640px) {
  .st-success-wrap { padding: 24px 16px 60px; }
  .st-success-event-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .st-success-event-ref { text-align: left; }
  .st-issued-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   Ticket Verify Page
   ═══════════════════════════════════════════════════════════════════ */

.st-verify-wrap {
  max-width: 420px;
  margin: 40px auto 80px;
  padding: 0 16px;
}

/* ── Status Banner ───────────────────────────────────────────────── */
.st-verify-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.st-verify-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}
.st-verify-banner-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.st-verify-banner-sub {
  font-size: 12px;
  margin-top: 2px;
  opacity: .75;
}

.st-verify-valid {
  background: #059669;
  color: #fff;
}
.st-verify-valid .st-verify-banner-icon {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.st-verify-used {
  background: var(--c-danger);
  color: #fff;
}
.st-verify-used .st-verify-banner-icon {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.st-verify-cancelled {
  background: var(--c-gray);
  color: #fff;
}
.st-verify-cancelled .st-verify-banner-icon {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* ── Card ────────────────────────────────────────────────────────── */
.st-verify-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── QR Section ──────────────────────────────────────────────────── */
.st-verify-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--c-border);
}
.st-verify-qr-img {
  width: 180px;
  height: 180px;
  display: block;
  border-radius: var(--radius-sm);
  image-rendering: pixelated;
}
.st-verify-code {
  margin-top: 10px;
  font-size: 9px;
  font-family: 'Courier New', monospace;
  color: var(--c-gray-light);
  letter-spacing: .4px;
  word-break: break-all;
  text-align: center;
}

/* ── Info Rows ───────────────────────────────────────────────────── */
.st-verify-info {
  padding: 8px 0;
}
.st-verify-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 22px;
  border-bottom: 1px solid var(--c-border);
}
.st-verify-row:last-child { border-bottom: none; }
.st-verify-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-gray-mid);
  white-space: nowrap;
  flex-shrink: 0;
}
.st-verify-value {
  font-size: 13px;
  color: var(--c-text);
  text-align: right;
}
.st-verify-value-bold { font-weight: 700; }
.st-verify-mono {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--c-text-2);
}

/* ── Admit Button ────────────────────────────────────────────────── */
.st-verify-admit {
  padding: 16px 20px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.st-verify-admit-btn {
  width: 100%;
  padding: 13px;
  background: var(--c-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s, transform .1s;
}
.st-verify-admit-btn:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* ── Verify Footer ───────────────────────────────────────────────── */
.st-verify-home {
  text-align: center;
  margin-top: 20px;
}
.st-verify-home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-gray-mid);
  transition: color .12s;
}
.st-verify-home-link:hover { color: var(--c-text); }
