:root {
  --ink: #05070b;
  --ink-blue: #07111d;
  --panel: #0d1118;
  --panel-soft: #141923;
  --gold: #d8b15a;
  --gold-light: #f2d88a;
  --gold-dark: #a67d28;
  --white: #fffaf0;
  --muted: #aeb5c0;
  --line: rgba(216, 177, 90, .24);
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
  --content: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.screen-reader-text, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: #fff;
  color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 7, 11, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.notice-bar {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 4vw, 56px);
  padding: 7px 18px;
  background: #122032;
  color: #f2d88a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.nav-shell {
  width: min(var(--content), calc(100% - 40px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand-mark > span:last-child { display: grid; }
.brand-mark strong {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 1.8px;
}
.brand-mark small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.brand-symbol {
  width: 34px;
  aspect-ratio: 1;
  display: block;
  border: 1px solid var(--gold);
  background:
    linear-gradient(135deg, transparent 0 35%, var(--gold) 36% 43%, transparent 44%),
    linear-gradient(45deg, transparent 0 51%, var(--gold-light) 52% 59%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(216, 177, 90, .18), transparent 58%);
}
.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-nav a {
  color: #e7ebef;
  font-size: 13px;
  font-weight: 700;
}
.primary-nav a:hover { color: var(--gold-light); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.gold-button,
.nav-cta,
.request-button,
.submit-request,
.footer-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #080b0d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 16px 40px rgba(216, 177, 90, .18);
}
.gold-button:hover,
.nav-cta:hover,
.request-button:hover,
.footer-link-button:hover { transform: translateY(-1px); }
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wc-hero {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  align-items: end;
  isolation: isolate;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.wc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 18%, rgba(216, 177, 90, .22), transparent 28%),
    linear-gradient(90deg, rgba(2, 4, 8, .96) 0%, rgba(5, 10, 18, .72) 47%, rgba(5, 10, 18, .18) 84%),
    linear-gradient(0deg, var(--ink) 0%, rgba(5, 7, 11, .08) 48%);
}
.wc-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(216, 177, 90, .22);
}
.wc-hero__content {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 126px;
}
.wc-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.wc-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 500;
  line-height: .92;
}
.wc-hero__subtitle {
  max-width: 680px;
  margin: 26px 0 14px;
  color: #eff2f2;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}
.wc-hero__copy {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions,
.contact-actions,
.guarantee-actions,
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wc-hero__meta {
  position: absolute;
  right: max(20px, calc((100vw - var(--content)) / 2));
  bottom: 52px;
  display: grid;
  gap: 8px;
  color: #d9dce0;
  font-size: 11px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.trust-bar {
  width: min(var(--content), calc(100% - 40px));
  margin: -48px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(13, 17, 24, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-bar article {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.trust-bar article:last-child { border-right: 0; }
.trust-bar strong { font-size: 13px; }
.trust-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.trust-icon::after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  margin: 9px 8px;
  border-left: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(-90deg);
}

.ticket-market,
.process-section,
.why-section,
.fans-section,
.reviews-section,
.guarantee-section,
.safe-section,
.faq-section,
.contact-section,
.site-footer,
.site-main {
  width: min(var(--content), calc(100% - 40px));
  margin: auto;
}
.ticket-market,
.process-section,
.why-section,
.fans-section,
.reviews-section,
.guarantee-section,
.safe-section,
.faq-section,
.contact-section {
  padding: 108px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading h2,
.guarantee-copy h2,
.faq-heading h2,
.contact-copy h2,
.safe-copy h2,
.entry-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 500;
  line-height: 1;
}
.section-heading p,
.guarantee-copy p,
.safe-copy p,
.contact-copy p,
.entry-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.section-heading--center {
  align-items: center;
}
.category-nav {
  margin: 0 0 34px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.category-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #dfe3e6;
  font-size: 12px;
  font-weight: 800;
}
.category-nav a:hover { color: #06080b; background: var(--gold); }

.ticket-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ticket-card,
.woocommerce ul.products li.product {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.ticket-card__media,
.ticket-card__image img,
.woocommerce ul.products li.product a img {
  aspect-ratio: 1.25;
  width: 100%;
  object-fit: cover;
  background: #111;
}
.ticket-card__image {
  position: relative;
  display: block;
  overflow: hidden;
}
.ticket-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 7, 11, .72));
}
.ticket-card__image span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 32px);
  padding: 8px 10px;
  border: 1px solid rgba(216, 177, 90, .45);
  border-radius: 6px;
  background: rgba(5, 7, 11, .76);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ticket-card__body,
.woocommerce ul.products li.product {
  color: var(--white);
}
.ticket-card__body {
  display: grid;
  gap: 13px;
  padding: 22px;
}
.ticket-card__top {
  display: flex;
  justify-content: space-between;
  color: #d7e7dc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ticket-card h3,
.woocommerce-loop-product__title {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}
.ticket-price,
.price,
.single-ticket-price {
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 900;
}
.ticket-status,
.stock-status {
  color: #d7e7dc;
  font-size: 13px;
  font-weight: 800;
}
.request-button { width: 100%; margin-top: 4px; }
.woocommerce ul.products li.product a.button,
.woocommerce div.product form.cart,
.single_add_to_cart_button,
.quantity,
.product_meta { display: none !important; }

.process-grid,
.why-grid,
.safe-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-card,
.why-card,
.safe-card,
.contact-card,
.process-grid article,
.why-grid article,
.safe-section li,
.contact-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  padding: 24px;
}
.process-card span,
.process-grid article span,
.contact-cards span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.process-card h3,
.why-card h3,
.safe-card h3,
.contact-card h3,
.process-grid article h3,
.why-grid article h3 {
  margin: 0 0 12px;
  font-size: 19px;
}
.process-card p,
.why-card p,
.safe-card p,
.contact-card p,
.process-grid article p,
.why-grid article p,
.safe-section li,
.contact-cards article {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.why-grid { grid-template-columns: repeat(5, 1fr); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.product-reviews .reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.review-card {
  min-height: 230px;
  border: 1px solid rgba(216, 177, 90, .28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(216,177,90,.13), rgba(255,255,255,.035) 42%, rgba(13,17,24,.94)),
    var(--panel-soft);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.review-stars {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 2px;
}
.review-card blockquote {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
}
.review-card cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}
.usdt-panel {
  margin-top: 24px;
  border: 1px solid rgba(216, 177, 90, .34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,177,90,.18), transparent 30%),
    linear-gradient(145deg, rgba(216,177,90,.09), rgba(255,255,255,.035)),
    var(--panel);
  padding: 24px;
  color: var(--muted);
}
.usdt-panel h3 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 18px;
}
.usdt-panel p {
  margin: 0 0 12px;
  line-height: 1.65;
}
.usdt-panel ul {
  margin: 10px 0 0;
  padding-left: 20px;
  line-height: 1.7;
}
.wallet-address {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 177, 90, .32);
  border-radius: 6px;
  background: rgba(0, 0, 0, .32);
  color: var(--gold-light);
  font-weight: 900;
  overflow-wrap: anywhere;
}
.usdt-panel--footer {
  margin-top: 18px;
  padding: 16px;
  font-size: 12px;
}
.usdt-panel--modal {
  text-align: left;
}
.usdt-panel--modal ul,
.usdt-panel--footer ul {
  padding-left: 18px;
}
.contact-support-stack {
  display: grid;
  gap: 18px;
}
.safe-section,
.guarantee-section,
.fans-section,
.reviews-section,
.contact-section {
  border-top: 1px solid var(--line);
}
.safe-section {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: 48px;
  align-items: start;
}
.safe-grid,
.safe-section ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.safe-section h2,
.contact-section h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 500;
  line-height: 1;
}
.safe-section p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.guarantee-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.guarantee-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(216,177,90,.12), rgba(255,255,255,.04));
  padding: 36px;
}
.guarantee-panel ul,
.entry-content ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #dce0e1;
  line-height: 1.8;
}
.guarantee-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.text-button {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.text-button:hover { color: var(--white); }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item,
.faq-list details {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  padding: 22px;
}
.faq-heading { margin-bottom: 34px; }
.faq-item h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 17px;
}
.faq-item p,
.faq-list details p { margin: 12px 0 0; color: var(--muted); line-height: 1.7; }
.faq-list summary {
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}
.contact-grid,
.contact-cards { grid-template-columns: 1fr 1fr; }
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.contact-cards strong {
  display: block;
  margin: -12px 0 18px;
  color: var(--white);
  font-size: 24px;
}
.contact-card .gold-button,
.contact-card .ghost-button,
.contact-cards .gold-button { margin-top: 18px; }

.site-main {
  padding: 88px 0;
}
.page .entry-content,
.single .entry-content {
  max-width: 840px;
}
.entry-title { margin-bottom: 28px; }
.product-request-panel {
  display: grid;
  gap: 16px;
  margin: 22px 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.product-request-panel p { color: var(--muted); line-height: 1.7; }
.important-box {
  padding: 16px;
  border: 1px solid rgba(216,177,90,.38);
  border-radius: 8px;
  background: rgba(216,177,90,.08);
}
.product-reviews {
  margin-top: 52px;
}

.site-footer {
  padding: 70px 0 38px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 46px;
}
.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-link-button {
  width: fit-content;
  min-height: 40px;
  margin-bottom: 16px;
  padding: 0 15px;
}
.legal-notice {
  margin-top: 42px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: #838a95;
  font-size: 13px;
}

.availability-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.availability-modal[aria-hidden="false"] { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
}
.modal-dialog {
  position: relative;
  width: min(820px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070a10;
  padding: 34px;
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}
.modal-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.modal-dialog h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 500;
}
.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.request-form label {
  display: grid;
  gap: 7px;
  color: #eef1f1;
  font-size: 13px;
  font-weight: 800;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  min-height: 48px;
  padding: 12px 14px;
}
.request-form option { color: #111; }
.full-field,
.submit-request { grid-column: 1 / -1; }
.modal-success-state p {
  color: var(--muted);
  line-height: 1.75;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.floating-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--gold);
  color: #070a10;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 900;
}
.floating-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floating-links a {
  min-width: 174px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 11, .92);
  color: var(--gold-light);
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 38px rgba(0,0,0,.35);
}

@media (max-width: 1020px) {
  .notice-bar { display: none; }
  .menu-toggle { display: block; }
  .nav-shell { min-height: 70px; }
  .primary-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #080b11;
    padding: 16px;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu {
    display: grid;
    gap: 6px;
  }
  .primary-nav a { display: block; padding: 12px 4px; }
  .nav-cta { display: none; }
  .wc-hero__meta { position: static; margin-top: 28px; text-align: left; }
  .trust-bar,
  .ticket-grid,
  .woocommerce ul.products,
  .process-grid,
  .why-grid,
  .reviews-grid,
  .product-reviews .reviews-grid,
  .safe-section,
  .safe-section ul,
  .guarantee-section,
  .contact-section,
  .contact-cards,
  .footer-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }
  .trust-bar article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-bar article:last-child { border-bottom: 0; }
  .safe-grid,
  .safe-section ul,
  .contact-grid,
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-shell,
  .wc-hero__content,
  .trust-bar,
  .ticket-market,
  .process-section,
  .why-section,
  .fans-section,
  .reviews-section,
  .guarantee-section,
  .safe-section,
  .faq-section,
  .contact-section,
  .site-footer,
  .site-main {
    width: min(100% - 28px, var(--content));
  }
  .wc-hero {
    min-height: 690px;
    background-position: center;
  }
  .wc-hero::after { inset: 10px; }
  .wc-hero__content { padding: 76px 0 104px; }
  .wc-hero h1 { font-size: clamp(46px, 16vw, 68px); }
  .hero-actions .gold-button,
  .hero-actions .ghost-button,
  .contact-actions .gold-button,
  .contact-actions .ghost-button,
  .success-actions .gold-button,
  .success-actions .ghost-button {
    width: 100%;
  }
  .ticket-market,
  .process-section,
  .why-section,
  .fans-section,
  .reviews-section,
  .guarantee-section,
  .safe-section,
  .faq-section,
  .contact-section {
    padding: 74px 0;
  }
  .section-heading h2,
  .guarantee-copy h2,
  .faq-heading h2,
  .contact-copy h2,
  .safe-copy h2,
  .safe-section h2,
  .contact-section h2,
  .entry-title {
    font-size: 42px;
  }
  .request-form { grid-template-columns: 1fr; }
  .modal-dialog { padding: 26px 18px; }
  .review-card,
  .usdt-panel { padding: 18px; }
  .footer-bottom { display: grid; }
  .floating-contact { right: 12px; bottom: 12px; }
  .floating-toggle { display: inline-flex; align-items: center; }
  .floating-links { display: none; }
  .floating-contact.is-open .floating-links { display: flex; }
  .floating-links a { min-width: 148px; }
}
