/* =====================================================================
   NorthBridge Ticket — design system v2  "Arena"
   Mobile-first · premium dark · editorial. Cross-browser.
   ===================================================================== */

:root {
  /* surfaces */
  --bg: #06080f;
  --bg-2: #090c16;
  --surface: #0e1320;
  --surface-2: #131a2b;
  --surface-3: #1b2440;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.14);

  /* text */
  --text: #f2f4fc;
  --muted: #99a2c2;
  --muted-2: #626c8c;

  /* brand */
  --primary: #5180ff;
  --violet: #9b5cff;
  --cyan: #2bd4f0;
  --lime: #ccff4d;
  --lime-ink: #0f1605;
  --coral: #ff6b5e;
  --warn: #ff8a4c;
  --ok: #46d39a;

  --primary-soft: rgba(81, 128, 255, 0.13);
  --warn-soft: rgba(255, 138, 76, 0.12);

  /* gradients */
  --g-primary: linear-gradient(120deg, #5180ff, #9b5cff);
  --g-cta: linear-gradient(120deg, #d6ff5c, #a6ee2e);
  --g-text: linear-gradient(100deg, #fff 8%, #c7d2ff 52%, #9b5cff 100%);
  --g-mesh: radial-gradient(1100px 620px at 82% -8%, rgba(155, 92, 255, 0.32), transparent 58%),
            radial-gradient(900px 540px at 4% 4%, rgba(81, 128, 255, 0.30), transparent 55%),
            radial-gradient(700px 500px at 60% 110%, rgba(43, 212, 240, 0.16), transparent 55%);

  /* shape */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* effects */
  --shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.85);
  --shadow-soft: 0 18px 44px -22px rgba(0, 0, 0, 0.7);
  --glow-primary: 0 18px 50px -18px rgba(81, 128, 255, 0.75);
  --glow-cta: 0 18px 46px -16px rgba(204, 255, 77, 0.55);
  --ring: 0 0 0 3px rgba(81, 128, 255, 0.5);

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(18px, 4.5vw, 48px);
  --header-h: 70px;

  --ease: cubic-bezier(0.4, 0, 0.1, 1);
}

/* ------------------------------ reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* subtle film grain */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -0.025em; font-weight: 700;
  font-family: "Sora", "Inter", system-ui, sans-serif; overflow-wrap: break-word; }
p { margin: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }
::selection { background: rgba(155, 92, 255, 0.4); color: #fff; }

/* ------------------------------ layout ----------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
.section--pad-b0 { padding-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #cdd6ff;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--g-primary); }
.eyebrow.center::after { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--g-primary); }
.eyebrow.center { justify-content: center; }

.section-head { max-width: 660px; margin-bottom: clamp(32px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 5.6vw, 3.1rem); margin-top: 18px; font-weight: 800; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; max-width: 56ch; }
.section-head.center .section-sub { margin-inline: auto; }

.grad-text { background: var(--g-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lime-text { color: var(--lime); }

/* ------------------------------ buttons ---------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r-pill); border: 1px solid transparent;
  font-weight: 700; font-size: .96rem; line-height: 1; white-space: nowrap; overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn::after { /* shine */
  content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.35) 50%, transparent 75%);
  transform: translateX(-130%); transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--g-primary); color: #fff; box-shadow: var(--glow-primary); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 24px 54px -16px rgba(81, 128, 255, 0.85); }
.btn--cta { background: var(--g-cta); color: var(--lime-ink); box-shadow: var(--glow-cta); }
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 24px 54px -14px rgba(204, 255, 77, 0.7); }
.btn--ghost { background: rgba(255, 255, 255, 0.045); color: var(--text); border-color: var(--line-2); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); border-color: var(--line-2); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: .86rem; }
.btn--lg { padding: 17px 30px; font-size: 1.02rem; }
/* legacy alias */
.btn--accent { background: var(--g-cta); color: var(--lime-ink); box-shadow: var(--glow-cta); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 24px 54px -14px rgba(204, 255, 77, 0.7); }

/* gradient-border card helper */
.gborder { border: 1px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              linear-gradient(140deg, rgba(255,255,255,.16), rgba(255,255,255,.02) 40%) border-box; }

/* ------------------------------ topbar ----------------------------- */
.topbar { background: linear-gradient(90deg, rgba(81,128,255,.16), rgba(155,92,255,.16)); border-bottom: 1px solid var(--line); }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 38px; font-size: .8rem; color: #d7ddff; font-weight: 500; text-align: center; padding: 6px var(--gutter); }
.topbar__inner svg { width: 15px; height: 15px; color: var(--lime); flex: none; }
.topbar b { color: #fff; font-weight: 700; }

/* ------------------------------ header ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 8, 15, 0.6);
  backdrop-filter: saturate(170%) blur(16px); -webkit-backdrop-filter: saturate(170%) blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(6, 8, 15, 0.9); }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 80; background: var(--g-cta); box-shadow: 0 0 12px rgba(204,255,77,.6); transition: width .1s linear; }
.nav { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; }
.brand__logo { width: 40px; height: 40px; flex: none; filter: drop-shadow(0 6px 14px rgba(81,128,255,.4)); }
.brand__name { font-family: "Sora", sans-serif; font-size: 1.14rem; letter-spacing: -0.02em; }
.brand__name b { color: #fff; } .brand__name span { color: var(--primary); }

.nav__links { display: none; gap: 2px; margin-inline: auto; }
.nav__links a { position: relative; padding: 9px 15px; border-radius: var(--r-pill); color: var(--muted); font-weight: 600; font-size: .93rem; transition: color .15s; }
.nav__links a::before { content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--g-cta); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav__links a:hover { color: var(--text); } .nav__links a:hover::before { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lang { display: inline-flex; align-items: center; gap: 6px; padding: 9px 13px; border-radius: var(--r-pill); background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--text); font-weight: 700; font-size: .8rem; transition: .15s; }
.lang:hover { border-color: var(--line-2); }
.lang svg { width: 15px; height: 15px; color: var(--muted); }
.nav__cta { display: none; }
.burger { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.burger span { width: 20px; height: 2px; background: var(--text); position: relative; transition: .25s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: .25s; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: calc(var(--header-h)) 0 auto 0; z-index: 55; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 24px; display: grid; gap: 4px; transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .24s var(--ease); }
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { padding: 14px 14px; border-radius: 13px; font-weight: 600; color: var(--muted); }
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: var(--text); }
.mobile-menu .btn { margin-top: 10px; }

/* ------------------------------ hero ------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(44px, 7vw, 88px) clamp(40px, 6vw, 72px); }
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; filter: saturate(1.05); }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,8,15,.55) 0%, rgba(6,8,15,.4) 40%, var(--bg) 96%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--g-mesh); pointer-events: none; }
.hero__grid { position: absolute; inset: 0; z-index: -1; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: radial-gradient(75% 65% at 50% 24%, #000 28%, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 24%, #000 28%, transparent 78%); }
.hero__inner { position: relative; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-pill); background: rgba(255,255,255,.05); border: 1px solid var(--line); font-size: .8rem; font-weight: 600; color: #c4cbe6; backdrop-filter: blur(6px); }
.chip svg { width: 15px; height: 15px; color: var(--lime); }
.hero h1 { font-size: clamp(2.05rem, 8vw, 5rem); font-weight: 800; letter-spacing: -0.035em; }
.hero__lead { color: var(--muted); font-size: clamp(1.02rem, 2.6vw, 1.22rem); margin-top: 20px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.rating-inline { display: flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--muted); font-size: .88rem; }
.rating-inline .stars { display: inline-flex; gap: 2px; color: var(--lime); }
.rating-inline .stars svg { width: 16px; height: 16px; }
.rating-inline .avs { display: inline-flex; }
.rating-inline .av { width: 30px; height: 30px; border-radius: 50%; margin-left: -8px; border: 2px solid var(--bg); display: grid; place-items: center; font-size: .7rem; font-weight: 800; color: #fff; }

.notice { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; padding: 15px 17px; background: var(--warn-soft); border: 1px solid rgba(255,138,76,.3); border-radius: var(--r); color: #ffd9c4; font-size: .9rem; max-width: 600px; }
.notice svg { width: 20px; height: 20px; color: var(--warn); flex: none; margin-top: 1px; }
.notice b { color: #fff; }

/* search */
.search { margin-top: 28px; background: rgba(14,19,32,.78); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 12px; box-shadow: var(--shadow); display: grid; gap: 10px; max-width: 780px; backdrop-filter: blur(14px); }
.search__row { display: grid; gap: 10px; }
.search__field { position: relative; display: flex; align-items: center; gap: 10px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 12px 14px; transition: border-color .15s; }
.search__field:focus-within { border-color: var(--primary); }
.search__field svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.search__field label { position: absolute; left: -9999px; }
.search__field input, .search__field select { width: 100%; background: transparent; border: 0; color: var(--text); font-size: .95rem; outline: none; }
.search__field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.search__field select option { background: var(--surface-2); color: var(--text); }

/* scroll cue */
.scroll-cue { display: none; }

/* ------------------------------ partners --------------------------- */
.partners { border-block: 1px solid var(--line); background: rgba(9,12,22,.6); }
.partners__inner { display: flex; align-items: center; gap: clamp(16px, 4vw, 44px); flex-wrap: wrap; justify-content: center; padding-block: 22px; }
.partners__label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.partners__logos { display: flex; flex-wrap: wrap; gap: clamp(14px, 3vw, 34px); align-items: center; justify-content: center; }
.partners__logos span { font-family: "Sora", sans-serif; font-weight: 700; font-size: clamp(.95rem, 2.5vw, 1.25rem); color: #5b658a; letter-spacing: -0.02em; transition: color .2s; }
.partners__logos span:hover { color: #aeb6d6; }

/* ------------------------------ stats band ------------------------- */
.stats-band { display: grid; gap: 1px; grid-template-columns: repeat(2, 1fr); background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat-cell { background: var(--surface); padding: clamp(22px, 4vw, 36px) clamp(18px, 3vw, 30px); }
.stat-cell b { display: block; font-family: "Sora", sans-serif; font-size: clamp(1.9rem, 6vw, 3rem); font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(120deg, #fff, var(--lime)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-cell span { color: var(--muted); font-size: .9rem; margin-top: 6px; display: block; }

/* ------------------------------ categories (bento) ----------------- */
.bento { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; grid-auto-rows: 158px; grid-auto-flow: dense; }
.cat { position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; isolation: isolate; transition: transform .3s var(--ease), border-color .3s; text-align: left; }
.cat img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--cat-grad, var(--g-primary)); opacity: .9; }
.cat::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,8,15,.05) 30%, rgba(6,8,15,.86)); }
.cat:hover { transform: translateY(-4px); border-color: var(--line-2); }
.cat:hover img { transform: scale(1.08); }
.cat__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.2); margin-bottom: auto; backdrop-filter: blur(4px); }
.cat__icon svg { width: 22px; height: 22px; color: #fff; }
.cat h3 { font-size: 1.16rem; margin-top: 14px; color: #fff; }
.cat p { font-size: .84rem; color: rgba(255,255,255,.82); margin-top: 4px; }
.cat__count { position: absolute; top: 16px; right: 16px; font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: var(--r-pill); background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(4px); }
.cat--tall { grid-row: span 2; }
.cat--wide { grid-column: span 2; }
.cat--cta { background: var(--g-primary); }
.cat--cta::before, .cat--cta::after { display: none; }

/* ------------------------------ featured spotlight ----------------- */
.spotlight { position: relative; overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--line-2); min-height: 460px; display: flex; align-items: flex-end; isolation: isolate; }
.spotlight img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.spotlight::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,8,15,.2) 0%, rgba(6,8,15,.5) 45%, rgba(6,8,15,.96) 100%), linear-gradient(90deg, rgba(6,8,15,.7), transparent 70%); }
.spotlight__body { padding: clamp(24px, 5vw, 48px); max-width: 620px; }
.spotlight__kicker { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: var(--r-pill); background: var(--coral); color: #2a0d09; font-weight: 800; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; }
.spotlight h2 { font-size: clamp(1.9rem, 6vw, 3.2rem); font-weight: 800; margin-top: 16px; color: #fff; }
.spotlight__meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.spotlight p { color: #c7cde6; margin-top: 16px; font-size: 1rem; max-width: 52ch; }
.spotlight__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 24px; }
.spotlight__price { font-family: "Sora", sans-serif; } .spotlight__price small { display: block; color: var(--muted); font-size: .78rem; } .spotlight__price b { font-size: 1.7rem; color: #fff; } .spotlight__price b span { color: var(--lime); }

/* ------------------------------ events toolbar/grid ---------------- */
.toolbar { display: grid; gap: 14px; margin-bottom: 28px; }
.chips-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fchip { padding: 9px 16px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); color: var(--muted); font-weight: 600; font-size: .85rem; transition: .15s; }
.fchip:hover { color: var(--text); border-color: var(--line-2); }
.fchip.active { background: var(--g-primary); border-color: transparent; color: #fff; box-shadow: var(--glow-primary); }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.select-wrap { position: relative; flex: 1 1 150px; min-width: 140px; }
.select-wrap svg { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--muted); pointer-events: none; }
.select-wrap select { width: 100%; appearance: none; -webkit-appearance: none; padding: 12px 38px 12px 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); color: var(--text); font-size: .9rem; font-weight: 600; cursor: pointer; transition: border-color .15s; }
.select-wrap select:hover { border-color: var(--line-2); }
.select-wrap select option { background: var(--surface-2); }
.results-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.results-meta b { color: var(--text); }

.events-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.card { position: relative; display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  border: 1px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.02) 45%) border-box; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--card-grad, var(--g-primary)); }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(8,11,20,.82)); }
.card__tags { position: absolute; top: 13px; left: 13px; right: 13px; display: flex; justify-content: space-between; gap: 8px; z-index: 2; }
.tag { font-size: .7rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--r-pill); background: rgba(6,8,15,.62); backdrop-filter: blur(7px); border: 1px solid rgba(255,255,255,.18); }
.tag--sport { color: var(--lime); }
.tag--country { display: inline-flex; align-items: center; gap: 6px; color: #fff; }
.card__urgency { position: absolute; left: 14px; bottom: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .8rem; color: #fff; padding: 6px 11px; border-radius: var(--r-pill); background: rgba(255,107,94,.22); border: 1px solid rgba(255,107,94,.45); backdrop-filter: blur(6px); }
.card__urgency .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255,107,94,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(255,107,94,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,94,0); } }
.card__body { padding: 17px 17px 19px; display: flex; flex-direction: column; flex: 1; }
.card__loc { font-size: .82rem; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.card__loc svg { width: 14px; height: 14px; color: var(--primary); }
.card h3 { font-size: 1.22rem; margin-top: 9px; font-weight: 800; }
.card__date { font-size: .82rem; color: var(--lime); font-weight: 700; margin-top: 8px; display: inline-flex; align-items: center; gap: 7px; }
.card__date svg { width: 14px; height: 14px; }
.card__desc { color: var(--muted); font-size: .9rem; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-clamp: 2; overflow: hidden; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--line); }
.card__price small { display: block; color: var(--muted-2); font-size: .72rem; }
.card__price b { font-size: 1.3rem; font-family: "Sora", sans-serif; } .card__price b span { color: var(--lime); }

.empty { text-align: center; padding: 64px 20px; color: var(--muted); border: 1px dashed var(--line-2); border-radius: var(--r-lg); }
.empty svg { width: 46px; height: 46px; color: var(--muted-2); margin: 0 auto 14px; }

/* ------------------------------ steps timeline --------------------- */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; }
.step { position: relative; padding: 28px 24px; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg-2)); transition: transform .25s var(--ease), border-color .25s; }
.step:hover { transform: translateY(-4px); border-color: var(--line-2); }
.step__num { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.2rem; background: var(--g-primary); color: #fff; box-shadow: var(--glow-primary); }
.step__ico { position: absolute; top: 28px; right: 24px; opacity: .5; } .step__ico svg { width: 28px; height: 28px; color: var(--muted); }
.step h3 { font-size: 1.22rem; margin-top: 20px; font-weight: 800; }
.step p { color: var(--muted); margin-top: 9px; font-size: .95rem; }
.step__line { display: none; }

/* ------------------------------ features bento --------------------- */
.features { display: grid; gap: 16px; grid-template-columns: 1fr; }
.feature { position: relative; overflow: hidden; padding: 26px 24px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); transition: transform .25s var(--ease), border-color .25s; }
.feature::before { content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--primary-soft); filter: blur(20px); opacity: 0; transition: opacity .3s; }
.feature:hover { transform: translateY(-4px); border-color: var(--line-2); } .feature:hover::before { opacity: 1; }
.feature__icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--primary-soft); border: 1px solid rgba(81,128,255,.3); position: relative; }
.feature__icon svg { width: 25px; height: 25px; color: #9fb6ff; }
.feature h3 { font-size: 1.16rem; margin-top: 18px; font-weight: 800; }
.feature p { color: var(--muted); margin-top: 9px; font-size: .92rem; }

/* ------------------------------ testimonials ----------------------- */
.reviews { display: grid; gap: 18px; grid-template-columns: 1fr; }
.review { padding: 26px 24px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; gap: 16px; transition: transform .25s var(--ease), border-color .25s; }
.review:hover { transform: translateY(-4px); border-color: var(--line-2); }
.review__stars { display: inline-flex; gap: 2px; color: var(--lime); } .review__stars svg { width: 17px; height: 17px; }
.review p { color: #d4d9ee; font-size: 1rem; line-height: 1.6; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 1rem; flex: none; }
.review__who b { display: block; font-size: .94rem; } .review__who span { color: var(--muted); font-size: .82rem; }

/* ------------------------------ CTA band --------------------------- */
.band { position: relative; overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--line-2); padding: clamp(32px, 6vw, 64px); background: var(--surface-2); }
.band img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--g-mesh); opacity: .85; }
.band__inner { position: relative; max-width: 600px; }
.band h2 { font-size: clamp(1.7rem, 5vw, 2.7rem); font-weight: 800; }
.band p { color: var(--muted); margin-top: 16px; }
.band .btn { margin-top: 26px; }

/* ------------------------------ subscribe -------------------------- */
.subscribe { position: relative; overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--line-2); padding: clamp(26px, 5vw, 48px); display: grid; gap: 26px; background: var(--surface); }
.subscribe::before { content: ""; position: absolute; top: -120px; right: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(155,92,255,.3), transparent 70%); pointer-events: none; }
.subscribe__copy h2 { font-size: clamp(1.6rem, 4.6vw, 2.3rem); font-weight: 800; }
.subscribe__copy p { color: var(--muted); margin-top: 12px; }
.subscribe__perks { display: grid; gap: 11px; margin-top: 20px; }
.subscribe__perks li { display: flex; gap: 11px; align-items: center; color: #c5cce6; font-size: .94rem; }
.subscribe__perks svg { width: 18px; height: 18px; color: var(--ok); flex: none; }

/* form */
.form-wrap { width: 100%; position: relative; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 7px; font-weight: 600; }
.form-group input[type=text], .form-group input[type=tel], .form-group input[type=email], .form-control {
  width: 100%; box-sizing: border-box; padding: 14px 15px; border-radius: var(--r); border: 1px solid var(--line); background: var(--bg-2); color: var(--text); font-size: .95rem; transition: border-color .15s, box-shadow .15s; }
.form-group input:focus, .form-control:focus { border-color: var(--primary); box-shadow: var(--ring); outline: none; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-consent { font-size: .82rem; color: var(--muted); }
.form-consent label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.form-consent input { margin-top: 3px; accent-color: var(--primary); width: 16px; height: 16px; flex: none; }
.form-consent a { color: var(--primary); text-decoration: underline; }
.btn-block { position: relative; overflow: hidden; width: 100%; padding: 15px; border: 0; border-radius: var(--r-pill); background: var(--g-cta); color: var(--lime-ink); font-weight: 800; font-size: .98rem; cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s; box-shadow: var(--glow-cta); }
.btn-block:hover { transform: translateY(-2px); box-shadow: 0 24px 54px -14px rgba(204,255,77,.7); }
.success-msg { display: none; margin-top: 12px; padding: 13px 15px; border-radius: var(--r); background: rgba(70,211,154,.12); border: 1px solid rgba(70,211,154,.35); color: var(--ok); font-size: .88rem; font-weight: 600; }
.success-msg.show { display: block; }

/* ------------------------------ FAQ -------------------------------- */
.faq { display: grid; gap: 12px; max-width: 840px; margin-inline: auto; }
.acc { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); transition: border-color .2s; }
.acc.open { border-color: var(--line-2); }
.acc__q { width: 100%; text-align: left; background: transparent; border: 0; color: var(--text); padding: 19px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 1.02rem; font-family: "Sora", sans-serif; }
.acc__q svg { width: 22px; height: 22px; color: var(--primary); flex: none; transition: transform .25s var(--ease); }
.acc.open .acc__q svg { transform: rotate(45deg); color: var(--lime); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc__a p { padding: 0 22px 22px; color: var(--muted); font-size: .95rem; }

/* ------------------------------ contact ---------------------------- */
.contact-grid { display: grid; gap: 24px; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 19px; transition: border-color .2s; }
.contact-card:hover { border-color: var(--line-2); }
.contact-card__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--primary-soft); border: 1px solid rgba(81,128,255,.3); flex: none; }
.contact-card__icon svg { width: 21px; height: 21px; color: #9fb6ff; }
.contact-card b { display: block; font-size: .96rem; }
.contact-card span, .contact-card a { color: var(--muted); font-size: .9rem; }
.contact-card a:hover { color: var(--text); }

/* ------------------------------ footer ----------------------------- */
.site-footer { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 72px) 28px; margin-top: 24px; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.footer-brand p { color: var(--muted); margin-top: 16px; font-size: .92rem; max-width: 340px; }
.footer-pay { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.pay-pill { font-size: .72rem; font-weight: 700; padding: 8px 12px; border-radius: 9px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); }
.footer-col h4 { font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); margin-bottom: 15px; }
.footer-col a { display: block; color: var(--muted); padding: 6px 0; font-size: .92rem; transition: color .15s, padding .15s; }
.footer-col a:hover { color: var(--text); padding-left: 5px; }
.footer-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 34px; padding: 17px; background: var(--warn-soft); border: 1px solid rgba(255,138,76,.26); border-radius: var(--r); color: #ffd9c4; font-size: .84rem; }
.footer-note svg { width: 18px; height: 18px; color: var(--warn); flex: none; margin-top: 1px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .85rem; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); transition: .15s; }
.footer-bottom .socials a:hover { color: var(--text); border-color: var(--line-2); transform: translateY(-3px); }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* ------------------------------ modal ------------------------------ */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(4,6,12,.74); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.modal__dialog { position: absolute; inset: auto 0 0 0; max-height: 93vh; background: var(--bg-2); border-top: 1px solid var(--line-2); border-radius: 26px 26px 0 0; overflow-y: auto; -webkit-overflow-scrolling: touch; animation: sheet-up .32s var(--ease); }
@keyframes sheet-up { from { transform: translateY(50px); opacity: .3; } }
.modal__bar { position: sticky; top: 0; z-index: 5; display: flex; justify-content: flex-end; padding: 12px; background: linear-gradient(180deg, var(--bg-2), transparent); }
.modal__x { width: 44px; height: 44px; border-radius: 13px; background: rgba(14,19,32,.8); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text); backdrop-filter: blur(8px); transition: .15s; }
.modal__x:hover { background: var(--surface-3); }
.modal__x svg { width: 20px; height: 20px; }
.modal__hero { position: relative; aspect-ratio: 16 / 9; background: var(--card-grad, var(--g-primary)); margin-top: -68px; }
.modal__hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, var(--bg-2)); }
.modal__body { padding: 0 var(--gutter) 28px; position: relative; margin-top: -44px; }
.modal__head h2 { font-size: clamp(1.6rem, 6vw, 2.3rem); font-weight: 800; }
.modal__meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.modal__meta .chip svg { color: var(--lime); }
.modal__section { margin-top: 28px; }
.modal__section h3 { font-size: 1.14rem; display: flex; align-items: center; gap: 10px; font-weight: 800; }
.modal__section h3 svg { width: 18px; height: 18px; color: var(--primary); }
.modal__section p { color: var(--muted); margin-top: 10px; font-size: .95rem; }
.logistics { display: grid; gap: 12px; margin-top: 14px; }
.logistics li { display: flex; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 16px; }
.logistics .lico { width: 38px; height: 38px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--primary-soft); border: 1px solid rgba(81,128,255,.3); }
.logistics .lico svg { width: 18px; height: 18px; color: #9fb6ff; }
.logistics b { font-size: .92rem; } .logistics p { margin-top: 3px; font-size: .88rem; }

.tickets { display: grid; gap: 10px; margin-top: 14px; }
.ticket { display: flex; align-items: center; gap: 14px; padding: 15px 16px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); cursor: pointer; transition: border-color .15s, background .15s; }
.ticket:hover { border-color: var(--line-2); }
.ticket.selected { border-color: var(--lime); background: rgba(204,255,77,.06); }
.ticket__radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-2); flex: none; display: grid; place-items: center; transition: .15s; }
.ticket.selected .ticket__radio { border-color: var(--lime); }
.ticket.selected .ticket__radio::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--lime); }
.ticket__info { flex: 1; } .ticket__info b { font-size: .96rem; } .ticket__info span { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.ticket__price { font-weight: 800; font-size: 1.12rem; font-family: "Sora", sans-serif; }

.disclaimer-box { margin-top: 24px; padding: 17px; border-radius: var(--r); background: var(--warn-soft); border: 1px solid rgba(255,138,76,.3); transition: border-color .2s; }
.disclaimer-box__head { display: flex; gap: 10px; align-items: center; color: #fff; font-weight: 800; }
.disclaimer-box__head svg { width: 20px; height: 20px; color: var(--warn); }
.disclaimer-box p { color: #ffd9c4; font-size: .88rem; margin-top: 10px; }
.consent-line { display: flex; gap: 11px; align-items: flex-start; margin-top: 16px; font-size: .88rem; color: var(--text); cursor: pointer; }
.consent-line input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--lime); flex: none; }
.modal__buy { position: sticky; bottom: 0; margin-top: 24px; padding: 16px var(--gutter); background: linear-gradient(0deg, var(--bg-2) 72%, transparent); display: flex; align-items: center; gap: 14px; }
.modal__total { margin-right: auto; } .modal__total small { display: block; color: var(--muted); font-size: .76rem; } .modal__total b { font-size: 1.45rem; font-family: "Sora", sans-serif; }

/* ------------------------------ legal page ------------------------- */
.legal { padding-top: clamp(40px, 6vw, 64px); }
.legal h1 { font-size: clamp(2rem, 6vw, 3rem); font-weight: 800; }
.legal__updated { color: var(--muted-2); margin-top: 12px; font-size: .88rem; }
.legal__body { max-width: 820px; margin-top: 34px; }
.legal__body h2 { font-size: 1.34rem; margin-top: 38px; font-weight: 800; }
.legal__body h3 { font-size: 1.06rem; margin-top: 24px; color: var(--text); }
.legal__body p, .legal__body li { color: var(--muted); margin-top: 12px; }
.legal__body ul { list-style: disc; padding-left: 22px; margin-top: 8px; }
.legal__body ul li { margin-top: 6px; }
.legal__body a { color: var(--primary); text-decoration: underline; }
.legal__body strong { color: var(--text); }

/* ------------------------------ misc ------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; } .reveal[data-d="2"] { transition-delay: .16s; } .reveal[data-d="3"] { transition-delay: .24s; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
body.no-scroll { overflow: hidden; }
.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 30px); z-index: 200; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--text); padding: 14px 22px; border-radius: var(--r-pill); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .3s var(--ease); font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: 10px; max-width: 90vw; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--lime); flex: none; }

/* ====================================================================
   RESPONSIVE — mobile-first, scale up
   ==================================================================== */
@media (min-width: 560px) {
  .search__row { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__cta .btn { width: auto; }
  .stats-band { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 720px) {
  .subscribe { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr; }
  .bento { grid-auto-rows: 170px; }
}
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
  .nav__cta { display: inline-flex; }
  .hero__inner { display: grid; grid-template-columns: 1.04fr .96fr; gap: 44px; align-items: center; }
  .hero__visual { display: block; }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .features { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .search__row { grid-template-columns: 2fr 1fr 1fr; }
  .modal__dialog { inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: min(840px, 94vw); max-height: 90vh; border-radius: 26px; border: 1px solid var(--line-2); animation: pop .26s var(--ease); }
  @keyframes pop { from { transform: translate(-50%, -46%); opacity: .3; } }
  .modal__hero { margin-top: 0; border-radius: 26px 26px 0 0; }
  .step__line { display: block; position: absolute; top: 54px; right: -9px; width: 18px; height: 2px; background: var(--line-2); }
  .step:last-child .step__line { display: none; }
}

/* ------------------------------ hero ticket mockup ----------------- */
@media (max-width: 959px) { .hero__visual { display: none !important; } }
.tix-stage { position: relative; perspective: 1400px; }
.tixmock { position: relative; border-radius: 24px; overflow: hidden; transform: rotateY(-14deg) rotateX(6deg) rotate(-1deg); box-shadow: var(--shadow); border: 1px solid var(--line-2); background: var(--surface); transition: transform .5s var(--ease); }
.tix-stage:hover .tixmock { transform: rotateY(-8deg) rotateX(3deg); }
.tixmock__img { position: relative; height: 180px; }
.tixmock__img img { width: 100%; height: 100%; object-fit: cover; }
.tixmock__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,8,15,.1), rgba(14,19,32,.9)); }
.tixmock__badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 6px 11px; border-radius: var(--r-pill); background: var(--lime); color: var(--lime-ink); }
.tixmock__body { padding: 18px 20px 20px; position: relative; }
.tixmock__body::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 20px;
  background-image: radial-gradient(circle at 10px 10px, var(--bg) 9px, transparent 10px); background-size: 24px 20px; background-position: -2px -10px; }
.tixmock__route { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tixmock__city { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.4rem; }
.tixmock__city span { display: block; font-family: "Inter"; font-weight: 500; font-size: .68rem; color: var(--muted); letter-spacing: .1em; }
.tixmock__plane { color: var(--primary); } .tixmock__plane svg { width: 26px; height: 26px; }
.tixmock__sep { height: 1px; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px); margin: 16px 0; }
.tixmock__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.tixmock__grid div span { display: block; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.tixmock__grid div b { font-size: .9rem; font-family: "Sora", sans-serif; }
.tixmock__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.tixmock__price b { font-size: 1.5rem; font-family: "Sora", sans-serif; } .tixmock__price b span { color: var(--lime); }
.tixmock__qr { width: 50px; height: 50px; border-radius: 10px; background: #fff; padding: 6px; }
.tixmock__qr svg { width: 100%; height: 100%; }
.float-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border-radius: 16px; background: rgba(14,19,32,.82); border: 1px solid var(--line-2); backdrop-filter: blur(12px); box-shadow: var(--shadow-soft); animation: floaty 5s ease-in-out infinite; }
.float-badge svg { width: 20px; height: 20px; }
.float-badge b { display: block; font-size: .92rem; font-family: "Sora", sans-serif; } .float-badge span { font-size: .72rem; color: var(--muted); }
.float-badge--a { top: -22px; right: -10px; } .float-badge--a svg { color: var(--lime); }
.float-badge--b { bottom: -20px; left: -18px; animation-delay: -2.5s; } .float-badge--b svg { color: var(--cyan); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
