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

[hidden] {
  display: none !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  background-color: #1a1b22;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 500;
}

a {
  color: #f93b1e;
  text-decoration: none;
}
a:hover {
  color: #fb6550;
}

.text-muted {
  color: rgba(255, 255, 255, 0.5);
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

header {
  background: rgba(13, 14, 18, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  transition: opacity 0.2s;
}
header nav .nav-logo img {
  height: 26px;
}
header nav .nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
@media (max-width: 640px) {
  .nav-links {
    gap: 0;
    justify-content: center;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
}
.nav-link svg {
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-link:hover svg {
  opacity: 1;
}
.nav-link.active {
  color: #f93b1e;
  background: rgba(249, 59, 30, 0.08);
}
.nav-link.active svg {
  opacity: 1;
}
.nav-link.primary {
  background: #f93b1e;
  color: #fff;
}
.nav-link.primary:hover {
  background: #fb6550;
  color: #fff;
}
@media (max-width: 640px) {
  .nav-link {
    padding: 8px 10px;
    font-size: 12px;
  }
  .nav-link span {
    display: none;
  }
  .nav-link svg {
    width: 20px;
    height: 20px;
    opacity: 0.85;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-lang {
  margin: 0;
}
.nav-lang select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 24px 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: all 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b6d7b' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
}
.nav-lang select:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}
.nav-lang select option {
  background: #15161c;
  color: #fff;
}

.nav-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-icon-btn:hover {
  color: #f93b1e;
  background: rgba(249, 59, 30, 0.08);
}

/*
 * Sticky footer.
 *
 * main used to carry min-height: calc(100vh - 60px), which pushed the
 * footer exactly one screen down on every short page. The column does the
 * same job for main and leaves the footer where it belongs.
 *
 * Scoped to .app-shell rather than bare body: the landing page and the
 * auth layout build their own shells and neither wants a flex body.
 */
.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.app-shell main {
  flex: 1;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(21, 22, 28, 0.3);
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.auth-page {
  background-color: #1a1b22;
  min-height: 100vh;
}

.auth-container {
  min-height: 100vh;
}

.min-vh-100 {
  min-height: 100vh;
}

.auth-left {
  background-color: #1a1b22;
  background-size: cover;
  background-position: center;
  position: relative;
}
.auth-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 14, 18, 0.6) 0%, rgba(13, 14, 18, 0.85) 100%);
  z-index: 0;
}

.auth-left-inner {
  position: relative;
  z-index: 1;
}

.auth-left-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 3rem;
  width: 100%;
}

.auth-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}

.auth-left-spacer {
  flex: 1;
}

.auth-left-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-footer-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-decoration: none;
}
.auth-footer-link:hover {
  color: #ffffff;
}

.auth-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1a1b22;
}

.auth-form-wrapper {
  padding: 1rem;
}
@media (min-width: 768px) {
  .auth-form-wrapper {
    padding: 3rem;
    max-width: 420px;
  }
}

.auth-mobile-logo {
  padding: 1rem;
  padding-bottom: 0;
}
.auth-mobile-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
}

/*
 * The nav's contents measured 520px wide no matter the viewport, so every
 * page scrolled sideways on a phone -- 130px over at 390px, 200px at 320px.
 * Nothing in the row could shrink: .nav-logo and .nav-right are
 * flex-shrink: 0, and .nav-links, though flex: 1, could not go below its
 * content because a flex item's min-width defaults to auto rather than 0.
 *
 * So .nav-links becomes the element that absorbs the squeeze: min-width: 0
 * lets it shrink and scroll its own icons rather than the page. The rest is
 * trimming, which is what buys the icons room to stay visible instead of
 * collapsing to nothing on a narrow screen.
 *
 * This block sits at the end of the file on purpose. Written next to
 * .nav-right it silently lost two of its rules: it preceded .nav-lang's own
 * `select` rule, which then won on source order at equal specificity, and
 * the logo's height is set as `header nav .nav-logo img` (0,1,3), which
 * outranks a bare `.nav-logo img` (0,1,1). Hence the full selectors below.
 */
@media (max-width: 640px) {
  header nav {
    padding: 0 10px;
    gap: 10px;
  }
  header nav .nav-logo img {
    height: 20px;
  }
  .nav-links {
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-right {
    gap: 4px;
  }
  .nav-right .nav-link {
    padding: 7px 8px;
    font-size: 12px;
  }
  .nav-lang select {
    padding: 6px 18px 6px 7px;
    font-size: 11px;
    background-position: right 5px center;
  }
}
/*
 * The prose pages: /about, /terms, /policy.
 *
 * Narrow measure on purpose. The rest of the site runs to 1100px, which is
 * right for a grid of cards and wrong for a paragraph -- a line of legal
 * text that wide is read once and skimmed after that.
 */
.legal-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-doc {
  max-width: 68ch;
}
.legal-doc h1 {
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.legal-doc h2 {
  font-size: 17px;
  margin: 40px 0 12px;
}
.legal-doc p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 14px;
}
.legal-doc ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
}
.legal-doc li {
  margin-bottom: 8px;
}
.legal-doc a {
  color: #f93b1e;
  text-decoration: none;
}
.legal-doc a:hover {
  text-decoration: underline;
}
.legal-doc code {
  font-size: 0.9em;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}
.legal-doc strong {
  color: rgba(255, 255, 255, 0.9);
}

.legal-updated {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 24px !important;
}

.legal-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 8px !important;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 32px 16px 60px;
  }
  .legal-doc h1 {
    font-size: 24px;
  }
}
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  color: #ffffff;
  background-color: #17181e;
  border: 1px solid rgba(135, 150, 165, 0.15);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-input:focus {
  border-color: #f93b1e;
  box-shadow: 0 0 0 0.2rem rgba(249, 59, 30, 0.25);
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #f93b1e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover:not(:disabled) {
  background-color: #fb6550;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.otp-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.otp-box {
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #17181e;
  border: 2px solid rgba(135, 150, 165, 0.15);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
}
.otp-box:focus {
  border-color: #f93b1e;
}
.otp-box.filled {
  border-color: #f93b1e;
}
@media (max-width: 480px) {
  .otp-box {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

.auth-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.auth-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.auth-footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}
.auth-footer-text a {
  color: #f93b1e;
  font-weight: 500;
}

.auth-terms {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.auth-terms a {
  color: #ffffff;
}

.auth-back-link {
  display: inline-block;
  font-size: 0.875rem;
  color: #f93b1e;
  margin-bottom: 1rem;
  cursor: pointer;
}
.auth-back-link:hover {
  color: #fb6550;
}

.otp-info {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
}
.otp-info a {
  color: #f93b1e;
  cursor: pointer;
}

.auth-step {
  display: none;
}
.auth-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.auth-alert {
  padding: 0.625rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}
.auth-alert.error {
  display: block;
  background-color: rgba(245, 6, 90, 0.15);
  color: #f5065a;
  border: 1px solid rgba(245, 6, 90, 0.3);
}
.auth-alert.success {
  display: block;
  background-color: rgba(49, 201, 113, 0.15);
  color: #31c971;
  border: 1px solid rgba(49, 201, 113, 0.3);
}

.auth-lang {
  margin-top: 1.5rem;
  text-align: center;
}
.auth-lang select {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background-color: transparent;
  border: 1px solid rgba(135, 150, 165, 0.15);
  border-radius: 4px;
  cursor: pointer;
}
.auth-lang select:focus {
  outline: none;
  border-color: #f93b1e;
}
.auth-lang select option {
  color: #ffffff;
  background-color: #1a1b22;
}

.iti {
  width: 100%;
  --iti-border-color: rgba(135, 150, 165, 0.15);
  --iti-country-selector-bg: #1a1b22;
  --iti-hover-color: rgba(255, 255, 255, 0.08);
  --iti-icon-color: rgba(255, 255, 255, 0.6);
}

.iti__country-selector,
.iti__country-list {
  background-color: #1a1b22;
  color: #ffffff;
}

.iti__country-list {
  border-radius: 4px;
}

.iti__selected-country {
  color: #ffffff;
}

.iti__selected-dial-code {
  color: rgba(255, 255, 255, 0.6);
}

.iti__search-input {
  background-color: #17181e;
  color: #ffffff;
  border-bottom: 1px solid rgba(135, 150, 165, 0.15);
}
.iti__search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.iti__search-input:focus {
  outline: none;
  border-bottom-color: #f93b1e;
}

.iti__country-name {
  color: #ffffff;
}

.iti__dial-code {
  color: rgba(255, 255, 255, 0.5);
}

.iti__no-results {
  color: rgba(255, 255, 255, 0.6);
}

.form-input.is-invalid {
  border-color: #f5065a;
}
.form-input.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 6, 90, 0.25);
}

.form-error {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #f5065a;
}
.form-error[hidden] {
  display: none;
}

.mint-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mint-ambient::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(249, 59, 30, 0.06) 0%, transparent 70%);
  animation: mint-drift 20s ease-in-out infinite;
}
.mint-ambient::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(249, 59, 30, 0.04) 0%, transparent 60%);
  animation: mint-drift 25s ease-in-out infinite reverse;
}

@keyframes mint-drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, -30px);
  }
}
.mint-shell {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.mint-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: mint-fadeUp 0.6s ease both;
}
.mint-header .mint-logo {
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}
.mint-header h1 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.mint-header .balance-badge {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mint-header .balance-badge .amount {
  color: #ffffff;
  font-weight: 600;
}

.mint-stepper {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  animation: mint-fadeUp 0.6s ease 0.1s both;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 0;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.27);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  background: #1a1b22;
}

.step-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.27);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 16px;
  position: relative;
  overflow: hidden;
  min-width: 30px;
}
.step-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f93b1e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-line.filled::after {
  transform: scaleX(1);
}

.step-item.active .step-num {
  border-color: #f93b1e;
  background: #f93b1e;
  color: #fff;
  box-shadow: 0 0 20px rgba(249, 59, 30, 0.15), 0 0 40px rgba(249, 59, 30, 0.08);
}
.step-item.active .step-label {
  color: #ffffff;
}

.step-item.done .step-num {
  border-color: #f93b1e;
  background: transparent;
  color: #f93b1e;
}
.step-item.done .step-label {
  color: rgba(255, 255, 255, 0.42);
}

.mint-card {
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 32px;
  animation: mint-fadeUp 0.5s ease both;
}
.mint-card + .mint-card {
  margin-top: 16px;
}

.mint-card-title {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mint-card-title .icon {
  width: 28px;
  height: 28px;
  background: rgba(249, 59, 30, 0.08);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.band-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 480px) {
  .band-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}

.band-option {
  background: #1a1b22;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.band-option:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.band-option.selected {
  border-color: #f93b1e;
  background: rgba(249, 59, 30, 0.08);
  box-shadow: 0 0 20px rgba(249, 59, 30, 0.15);
}
.band-option .band-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #22232d;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  overflow: hidden;
}
.band-option .band-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band-option .band-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.band-option .band-followers {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.27);
  font-family: "JetBrains Mono", monospace;
}

.mint-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mint-form-grid .full {
  grid-column: 1/-1;
}
@media (max-width: 480px) {
  .mint-form-grid {
    grid-template-columns: 1fr;
  }
}

.mint-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mint-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
}
.mint-field input, .mint-field select, .mint-field textarea {
  background: #1a1b22;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mint-field input:focus, .mint-field select:focus, .mint-field textarea:focus {
  border-color: rgba(249, 59, 30, 0.4);
  box-shadow: 0 0 0 3px rgba(249, 59, 30, 0.15);
}
.mint-field input::placeholder, .mint-field select::placeholder, .mint-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.27);
}
.mint-field select {
  cursor: pointer;
}
.mint-field select option {
  background: #15161c;
}
.mint-field textarea {
  resize: vertical;
  min-height: 80px;
}

.mint-btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.mint-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mint-btn.primary {
  background: #f93b1e;
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 59, 30, 0.25);
}
.mint-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 59, 30, 0.35);
}
.mint-btn.primary:active {
  transform: translateY(0);
}
.mint-btn.ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mint-btn.ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}
.mint-btn.mint-action {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.mint-btn.mint-action .shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: mint-shimmer 2.5s infinite;
}

@keyframes mint-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.preview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 480px) {
  .preview-layout {
    grid-template-columns: 1fr;
  }
}

.nft-card-preview {
  background: linear-gradient(145deg, #1a1b24, #12131a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}
.nft-card-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f93b1e, #ff6b4a, #f93b1e);
}
.nft-card-preview .qr-area {
  padding: 32px;
  display: flex;
  justify-content: center;
  background: rgba(249, 59, 30, 0.08);
}
.nft-card-preview .qr-area img {
  max-width: 180px;
  border-radius: 12px;
}
.nft-card-preview .ticket-info {
  padding: 24px;
}
.nft-card-preview .event-band {
  color: #f93b1e;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.nft-card-preview .event-name {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.nft-card-preview .meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.nft-card-preview .meta-row .meta-icon {
  color: rgba(255, 255, 255, 0.27);
  width: 16px;
  text-align: center;
}
.nft-card-preview .meta-row .meta-label {
  color: rgba(255, 255, 255, 0.42);
}
.nft-card-preview .meta-row .meta-value {
  margin-left: auto;
  font-weight: 500;
}
.nft-card-preview .nft-id {
  margin-top: 16px;
  padding: 10px 14px;
  background: #1a1b22;
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.27);
  word-break: break-all;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cost-breakdown {
  background: rgba(249, 59, 30, 0.08);
  border: 1px solid rgba(249, 59, 30, 0.4);
  border-radius: 8px;
  padding: 20px;
}
.cost-breakdown .cost-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.27);
  margin-bottom: 14px;
}
.cost-breakdown .cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}
.cost-breakdown .cost-row .cost-label {
  color: rgba(255, 255, 255, 0.42);
}
.cost-breakdown .cost-row .cost-value {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}
.cost-breakdown .cost-row.total {
  border-top: 1px solid rgba(249, 59, 30, 0.4);
  margin-top: 10px;
  padding-top: 14px;
  font-weight: 700;
}
.cost-breakdown .cost-row.total .cost-value {
  color: #f93b1e;
  font-size: 18px;
}

.mint-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(49, 201, 113, 0.15);
  border: 2px solid #31c971;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 36px;
  animation: mint-popIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes mint-popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.success-title {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  animation: mint-fadeUp 0.5s ease 0.2s both;
}

.success-sub {
  color: rgba(255, 255, 255, 0.42);
  font-size: 15px;
  margin-bottom: 32px;
  animation: mint-fadeUp 0.5s ease 0.3s both;
}

.tx-hash-box {
  background: #1a1b22;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 32px;
  max-width: 500px;
  animation: mint-fadeUp 0.5s ease 0.4s both;
}
.tx-hash-box .tx-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.27);
  white-space: nowrap;
}
.tx-hash-box .tx-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #f93b1e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.tx-hash-box .tx-copy {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.tx-hash-box .tx-copy:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  animation: mint-fadeUp 0.5s ease 0.5s both;
}

.mint-step {
  display: none;
}
.mint-step.active {
  display: block;
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  top: -10px;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.package-card {
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.package-card.featured {
  border-color: #f93b1e;
  background: linear-gradient(180deg, rgba(249, 59, 30, 0.06) 0%, #15161c 40%);
  box-shadow: 0 0 30px rgba(249, 59, 30, 0.1);
  transform: scale(1.04);
}
.package-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 40px rgba(249, 59, 30, 0.2);
}

.package-popular {
  position: absolute;
  top: -12px;
  background: #f93b1e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 100px;
}

.package-badge {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 8px;
}

.package-price {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.package-price .currency {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
}
.package-price .amount {
  font-family: "Syne", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-features {
  width: 100%;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
}
.feature-item .check {
  color: #f93b1e;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: rgba(249, 59, 30, 0.1);
  border-radius: 50%;
}

.package-buy {
  width: 100%;
  margin-top: auto;
}

.cta-card {
  background: linear-gradient(135deg, rgba(249, 59, 30, 0.08), rgba(249, 59, 30, 0.02));
  border: 1px solid rgba(249, 59, 30, 0.25);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  text-decoration: none;
  color: inherit;
  animation: mint-fadeUp 0.5s ease both;
  transition: all 0.3s ease;
}
.cta-card:hover {
  border-color: rgba(249, 59, 30, 0.5);
  transform: translateY(-2px);
}
.cta-card .cta-content {
  flex: 1;
}
.cta-card .cta-title {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cta-card .cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

.hero-card {
  background: linear-gradient(145deg, #1a1b24, #12131a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  animation: mint-fadeUp 0.5s ease both;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f93b1e, #ff6b4a, #f93b1e);
}

.hero-top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f93b1e, #ff6b4a);
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(249, 59, 30, 0.3);
}

.avatar-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-info {
  flex: 1;
  min-width: 0;
}

.hero-name {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-handle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-handle .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.27);
}

.hero-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.42);
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(249, 59, 30, 0.08);
  border-color: #f93b1e;
  color: #f93b1e;
}
.social-btn svg {
  width: 16px;
  height: 16px;
}

.hero-menu {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.42);
  transition: all 0.2s;
  text-decoration: none;
}
.hero-menu:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
  background: #1a1b22;
  border-radius: 12px;
  padding: 16px;
}
.stat .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.27);
  margin-bottom: 6px;
}
.stat .stat-value {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.profile-section {
  margin-top: 24px;
  animation: mint-fadeUp 0.5s ease both;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .icon {
  width: 28px;
  height: 28px;
  background: rgba(249, 59, 30, 0.08);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.tickets-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.06) transparent;
}
.tickets-scroll::-webkit-scrollbar {
  height: 6px;
}
.tickets-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.ticket-card {
  flex: 0 0 180px;
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.ticket-card:hover {
  border-color: #f93b1e;
  transform: translateY(-4px);
}
.ticket-card .ticket-qr {
  height: 160px;
  background: linear-gradient(135deg, rgba(249, 59, 30, 0.08), rgba(249, 59, 30, 0.02));
  display: grid;
  place-items: center;
  position: relative;
}
.ticket-card .ticket-qr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f93b1e, transparent);
}
.ticket-card .ticket-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ticket-card .ticket-info {
  padding: 14px;
}
.ticket-card .ticket-band {
  font-size: 11px;
  color: #f93b1e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.ticket-card .ticket-venue {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticket-card .ticket-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "JetBrains Mono", monospace;
}

.tickets-empty {
  background: #15161c;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
}
.tickets-empty .icon-big {
  font-size: 36px;
  opacity: 0.3;
  margin-bottom: 8px;
}

.bands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .bands-grid {
    grid-template-columns: 1fr;
  }
}

.band-card {
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.band-card:hover {
  border-color: #f93b1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 59, 30, 0.1);
}
.band-card:hover .band-arrow {
  color: #f93b1e;
}
.band-card .band-avatar,
.band-card .band-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
}
.band-card .band-avatar {
  background: linear-gradient(135deg, #3b82f6, #a855f7);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.band-card .band-avatar-img {
  object-fit: cover;
}
.band-card .band-info {
  flex: 1;
  min-width: 0;
}
.band-card .band-name {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.band-card .band-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "JetBrains Mono", monospace;
}
.band-card .band-arrow {
  color: rgba(255, 255, 255, 0.27);
  transition: color 0.2s;
}

@media (max-width: 480px) {
  .hero-top {
    flex-direction: column;
    gap: 16px;
  }
  .hero-name {
    font-size: 22px;
  }
  .stats-row {
    gap: 8px;
  }
  .stat {
    padding: 12px 10px;
  }
  .stat .stat-value {
    font-size: 18px;
  }
  .ticket-card {
    flex-basis: 150px;
  }
}
.feed-shell {
  max-width: 540px;
  margin: 0 auto;
  padding: 24px 16px 80px;
  position: relative;
  z-index: 1;
}

.stories {
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.stories::-webkit-scrollbar {
  display: none;
}

.stories-row {
  display: flex;
  gap: 14px;
  min-width: max-content;
}

.story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f93b1e, #f59e0b, #a855f7);
  padding: 2.5px;
}
.story-avatar.viewed {
  background: rgba(255, 255, 255, 0.08);
}

.story-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1a1b22;
  padding: 2px;
}

.story-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #a855f7);
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  object-fit: cover;
}

.story-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  max-width: 72px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story.your .story-avatar {
  background: transparent;
  padding: 0;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.story.your .story-avatar-inner {
  padding: 0;
}

.story.your .story-avatar-img {
  background: #1c1d25;
  color: rgba(255, 255, 255, 0.42);
  font-size: 24px;
  font-weight: 400;
}

.post {
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  animation: mint-fadeUp 0.5s ease both;
}

.post-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.post-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f93b1e, #ff6b4a);
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.post-avatar-link {
  flex-shrink: 0;
  display: block;
}

.post-avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

a.post-name {
  color: inherit;
  text-decoration: none;
}
a.post-name:hover {
  text-decoration: underline;
}

.post-meta {
  flex: 1;
  min-width: 0;
}

.post-name {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-verified {
  color: #f93b1e;
  font-size: 12px;
}

.post-location {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "JetBrains Mono", monospace;
}

.post-menu {
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.post-menu:hover {
  background: rgba(255, 255, 255, 0.04);
}

.post-media {
  background: #1c1d25;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.post-actions {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 6px;
}

.action-btn {
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  display: grid;
  place-items: center;
}
.action-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #f93b1e;
}
.action-btn.liked {
  color: #f5065a;
}
.action-btn.liked svg {
  fill: currentColor;
}
.action-btn svg {
  width: 22px;
  height: 22px;
}
.action-btn.save {
  margin-left: auto;
}
.action-btn.saved {
  color: #f93b1e;
}
.action-btn.saved svg {
  fill: currentColor;
}

.post-stats {
  padding: 0 16px 8px;
  font-size: 13px;
  font-weight: 600;
}

.post-caption {
  padding: 0 16px 8px;
  font-size: 14px;
  line-height: 1.5;
}
.post-caption .name {
  font-weight: 700;
  margin-right: 6px;
  font-family: "Syne", sans-serif;
}
.post-caption .more {
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}
.post-caption .tag {
  color: #f93b1e;
}

.post-comments {
  padding: 0 16px 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.post-comments:hover {
  color: #ffffff;
}

.post-time {
  padding: 0 16px 14px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.27);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "JetBrains Mono", monospace;
}

.ticket-post .post-media {
  background: linear-gradient(145deg, #1a1b24, #12131a);
  padding: 24px;
}

.ticket-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(249, 59, 30, 0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.ticket-preview-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.ticket-preview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f93b1e, #ff6b4a, #f93b1e);
}

.ticket-qr {
  padding: 40px;
  display: grid;
  place-items: center;
  background: rgba(249, 59, 30, 0.05);
}

.ticket-det {
  padding: 18px;
  color: #0d0e12;
}
.ticket-det .band {
  font-size: 11px;
  color: #f93b1e;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ticket-det .venue {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.ticket-det .when {
  font-size: 12px;
  color: #44465a;
  font-family: "JetBrains Mono", monospace;
}

.feed-empty {
  background: #15161c;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 60px 30px;
  text-align: center;
}
.feed-empty .icon-big {
  font-size: 48px;
  opacity: 0.3;
  margin-bottom: 12px;
}
.feed-empty .empty-title {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feed-empty .empty-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 600px) {
  .feed-shell {
    padding: 16px 0 80px;
  }
  .stories, .post, .feed-empty {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}
.band-hero {
  position: relative;
  overflow: hidden;
}

.band-cover-blur {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.3);
  opacity: 0.4;
  z-index: 0;
}

.band-hero .hero-top,
.band-hero .band-description,
.band-hero .band-actions,
.band-hero .stats-row {
  position: relative;
  z-index: 1;
}

.band-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.band-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.band-actions .mint-btn {
  flex: 1;
  padding: 12px 18px;
  font-size: 13px;
}
.band-actions .mint-btn svg {
  flex-shrink: 0;
}
.band-actions .mint-btn.following {
  background: rgba(49, 201, 113, 0.1);
  border: 1px solid rgba(49, 201, 113, 0.3);
  color: #31c971;
  cursor: default;
}
.band-actions .mint-btn.following:hover {
  transform: none;
  border-color: rgba(49, 201, 113, 0.3);
}

.band-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.band-tag {
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.band-tag.category {
  background: rgba(249, 59, 30, 0.08);
  border-color: rgba(249, 59, 30, 0.3);
  color: #f93b1e;
  font-weight: 600;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.member-card {
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.member-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.member-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}

.application-card {
  margin-bottom: 16px;
}
.application-card .application-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.application-card .application-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.application-card .application-status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.application-card .application-status.pending {
  background: rgba(255, 200, 0, 0.15);
  color: #ffc800;
}
.application-card .application-status.approved {
  background: rgba(0, 220, 130, 0.15);
  color: #00dc82;
}
.application-card .application-status.rejected {
  background: rgba(245, 6, 90, 0.15);
  color: #f5065a;
}
.application-card .application-user,
.application-card .application-links {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.application-card .application-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}
.application-card .application-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

#applyForm > .mint-btn {
  margin-top: 24px;
}

.member-search-wrap {
  position: relative;
}

.member-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  background: #16171f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  max-height: 260px;
  overflow-y: auto;
}

.member-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
}
.member-result:hover {
  background: rgba(255, 255, 255, 0.06);
}
.member-result img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.member-result .mr-username {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.member-chips,
.application-members {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.member-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}
.member-chip img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.member-chip .chip-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
  padding: 0 2px;
}
.member-chip .chip-remove:hover {
  color: #f5065a;
}

.apply-status-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.apply-summary .view-row {
  padding: 8px 0;
}

.nerd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin: 12px 0 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.nerd-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.nerd-toggle .nerd-chevron {
  transition: transform 0.2s;
}
.nerd-toggle.open .nerd-chevron {
  transform: rotate(180deg);
}

.comments-section {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0;
}

.comment-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.comment-avatar,
.comment-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-avatar {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
}

.comment-avatar-img {
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.comment-author {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}

.comment-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  overflow-wrap: anywhere;
}

.comment-empty {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px 0;
}

.comment-form {
  display: flex;
  gap: 10px;
}
.comment-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.comment-form input:focus {
  border-color: #f93b1e;
}

.member-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.member-name {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ticket-shell {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  position: relative;
  z-index: 1;
}

.ticket-view {
  background: linear-gradient(145deg, #1a1b24, #12131a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: mint-fadeUp 0.5s ease both;
}
.ticket-view::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f93b1e, #ff6b4a, #f93b1e);
}

.ticket-view-head {
  padding: 22px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.ticket-view-band {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f93b1e;
}

.ticket-view-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5px 10px;
  border-radius: 100px;
}
.ticket-view-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.ticket-view-badge .dot.active {
  background: #31c971;
  box-shadow: 0 0 8px rgba(49, 201, 113, 0.5);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.ticket-view-qr {
  padding: 32px;
  background: rgba(249, 59, 30, 0.05);
  display: grid;
  place-items: center;
  position: relative;
}
.ticket-view-qr::before, .ticket-view-qr::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: #1a1b22;
  border-radius: 50%;
}
.ticket-view-qr::before {
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.ticket-view-qr::after {
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.ticket-view-qr img {
  max-width: 240px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.ticket-view-qr .qr-fallback {
  width: 240px;
  height: 240px;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 72px;
}

.ticket-view-body {
  padding: 24px;
}

.ticket-view-venue {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ticket-view-date {
  font-size: 13px;
  color: #f93b1e;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  margin-bottom: 16px;
}

.ticket-view-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticket-view-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  overflow: hidden;
  padding: 2px;
}

.view-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #1a1b22;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.view-row.tx-row:hover {
  background: rgba(249, 59, 30, 0.08);
}
.view-row.tx-row:hover .row-value {
  color: #f93b1e;
}
.view-row .row-label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.view-row .row-value {
  font-weight: 600;
  color: #ffffff;
}
.view-row .row-value.mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
}

.ticket-view-foot {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ticket-view-foot .foot-powered {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.27);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.ticket-view-foot .foot-powered strong {
  color: rgba(255, 255, 255, 0.55);
  margin-left: 4px;
  font-weight: 700;
}

.ticket-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.ticket-share-btn:hover {
  background: rgba(249, 59, 30, 0.08);
  border-color: rgba(249, 59, 30, 0.3);
  color: #f93b1e;
}

.discover-search {
  position: relative;
  margin-bottom: 20px;
}
.discover-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.27);
}
.discover-search input {
  width: 100%;
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 16px 12px 40px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.discover-search input::placeholder {
  color: rgba(255, 255, 255, 0.27);
}
.discover-search input:focus {
  border-color: rgba(249, 59, 30, 0.4);
  box-shadow: 0 0 0 3px rgba(249, 59, 30, 0.1);
}

.discover-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.discover-item {
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}
.discover-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.discover-item-main {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.discover-avatar,
.discover-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.discover-avatar {
  background: linear-gradient(135deg, #3b82f6, #a855f7);
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.discover-avatar-img {
  object-fit: cover;
}

.discover-info {
  flex: 1;
  min-width: 0;
}

.discover-name {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discover-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "JetBrains Mono", monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.discover-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.27);
  flex-shrink: 0;
}
.discover-meta .discover-desc {
  font-family: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.discover-item .mint-btn {
  padding: 8px 14px;
  font-size: 12px;
  flex-shrink: 0;
  gap: 6px;
}
.discover-item .mint-btn.following {
  background: rgba(49, 201, 113, 0.1);
  border: 1px solid rgba(49, 201, 113, 0.25);
  color: #31c971;
}
.discover-item .mint-btn.following:hover {
  transform: none;
  border-color: rgba(49, 201, 113, 0.25);
}

.form-alert {
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.form-alert:empty {
  display: none;
}
.form-alert.success {
  display: block;
  background: rgba(49, 201, 113, 0.1);
  color: #31c971;
  border: 1px solid rgba(49, 201, 113, 0.25);
}
.form-alert.error {
  display: block;
  background: rgba(245, 6, 90, 0.1);
  color: #f5065a;
  border: 1px solid rgba(245, 6, 90, 0.25);
}

@keyframes mint-fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .mint-shell {
    padding: 24px 16px 60px;
  }
  .step-label {
    display: none;
  }
  .step-line {
    margin: 0 8px;
  }
  .mint-header .balance-badge {
    display: none;
  }
  .mint-card {
    padding: 24px 20px;
  }
}
/*
 * Contact form.
 *
 * It borrows the mint card and field styles wholesale; only these two
 * pieces are its own.
 */
.mint-header.contact-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.contact-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  max-width: 60ch;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.landing-body {
  font-family: "Instrument Sans", sans-serif;
  background: #1a1b22;
  color: #ffffff;
  overflow-x: hidden;
}

.land-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-glow::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(249, 59, 30, 0.15) 0%, transparent 60%);
  animation: land-drift 18s ease-in-out infinite;
}
.bg-glow::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
  animation: land-drift 22s ease-in-out infinite reverse;
}

@keyframes land-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -40px) scale(1.05);
  }
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

section {
  position: relative;
  z-index: 1;
}

.land-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 14, 18, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.land-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.land-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.land-logo:hover {
  opacity: 0.85;
}

.land-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.land-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.land-btn.primary {
  background: #f93b1e;
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 59, 30, 0.25);
}
.land-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 59, 30, 0.4);
}
.land-btn.ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.land-btn.ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}
.land-btn.large {
  padding: 14px 24px;
  font-size: 14px;
}
.land-btn.xlarge {
  padding: 18px 32px;
  font-size: 15px;
  border-radius: 12px;
}

.land-hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.land-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.land-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(249, 59, 30, 0.08);
  border: 1px solid rgba(249, 59, 30, 0.25);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f93b1e;
  margin-bottom: 24px;
  animation: land-fadeUp 0.6s ease both;
}
.land-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f93b1e;
  box-shadow: 0 0 10px #f93b1e;
  animation: land-pulse 2s infinite;
}

@keyframes land-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.land-h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: land-fadeUp 0.6s ease 0.1s both;
}
.land-h1 .line {
  display: block;
}
.land-h1 .gradient {
  background: linear-gradient(135deg, #f93b1e, #ff6b4a 60%, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.land-h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
}

.land-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 32px;
  animation: land-fadeUp 0.6s ease 0.2s both;
}

.land-hero-cta {
  display: flex;
  gap: 12px;
  animation: land-fadeUp 0.6s ease 0.3s both;
}

.land-hero-note {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.27);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
  animation: land-fadeUp 0.6s ease 0.4s both;
}

@keyframes land-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ticket-3d-wrap {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: land-fadeUp 0.8s ease 0.4s both;
}

.ticket-3d {
  width: 320px;
  background: linear-gradient(145deg, #1a1b24, #12131a);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(249, 59, 30, 0.2);
  transform: rotateY(-12deg) rotateX(8deg) rotateZ(-3deg);
  animation: land-float 6s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ticket-3d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f93b1e, #ff6b4a, #f93b1e);
  z-index: 2;
}

@keyframes land-float {
  0%, 100% {
    transform: rotateY(-12deg) rotateX(8deg) rotateZ(-3deg) translateY(0);
  }
  50% {
    transform: rotateY(-14deg) rotateX(6deg) rotateZ(-4deg) translateY(-12px);
  }
}
.ticket-3d-head {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.t3d-band {
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f93b1e;
}

.t3d-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 100px;
}
.t3d-status .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.ticket-3d-qr {
  padding: 28px;
  background: rgba(249, 59, 30, 0.06);
  display: grid;
  place-items: center;
  position: relative;
}
.ticket-3d-qr::before, .ticket-3d-qr::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #1a1b22;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.ticket-3d-qr::before {
  left: -10px;
}
.ticket-3d-qr::after {
  right: -10px;
}

.qr-grid-3d {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  grid-template: repeat(11, 1fr)/repeat(11, 1fr);
  gap: 2px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.qr-grid-3d span {
  background: #0d0e12;
  border-radius: 1px;
}
.qr-grid-3d span.w {
  background: transparent;
}

.ticket-3d-body {
  padding: 20px 22px;
}

.t3d-venue {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.1;
}

.t3d-date {
  font-size: 12px;
  font-family: "JetBrains Mono", monospace;
  color: #f93b1e;
  margin-bottom: 14px;
}

.t3d-meta {
  display: flex;
  gap: 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.27);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "JetBrains Mono", monospace;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.t3d-meta span {
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  font-weight: 600;
}

.orbit {
  position: absolute;
  inset: -40px;
  pointer-events: none;
}
.orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f93b1e;
  box-shadow: 0 0 12px #f93b1e;
  opacity: 0.6;
}
.orbit span:nth-child(1) {
  top: 10%;
  left: -10%;
  animation: land-orbit1 8s ease-in-out infinite;
}
.orbit span:nth-child(2) {
  bottom: 15%;
  right: -5%;
  animation: land-orbit2 10s ease-in-out infinite;
  background: #a855f7;
  box-shadow: 0 0 12px #a855f7;
}
.orbit span:nth-child(3) {
  top: 50%;
  right: -15%;
  animation: land-orbit3 7s ease-in-out infinite;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
}

@keyframes land-orbit1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -20px);
  }
}
@keyframes land-orbit2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
}
@keyframes land-orbit3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, -15px);
  }
}
.land-stats {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(21, 22, 28, 0.5);
}

.land-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: "Syne", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-item .stat-num .plus {
  color: #f93b1e;
  font-size: 0.5em;
  -webkit-text-fill-color: #f93b1e;
}
.stat-item .stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 10px;
  font-family: "JetBrains Mono", monospace;
}

.land-split {
  padding: 120px 0;
}

.split-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}
.split-head h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.split-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split-card {
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}
.split-card.fans {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.08), #15161c);
}
.split-card.bands {
  background: linear-gradient(145deg, rgba(249, 59, 30, 0.08), #15161c);
}
.split-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.split-card.fans::before {
  background: #3b82f6;
}
.split-card.bands::before {
  background: #f93b1e;
}
.split-card .split-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  filter: grayscale(0.2);
}
.split-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.split-card .tagline {
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 28px;
  font-size: 14px;
}
.split-card .land-btn {
  position: relative;
  z-index: 1;
}

.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.split-list .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(249, 59, 30, 0.1);
  color: #f93b1e;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.split-card.fans .check {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.land-bridge {
  padding: 100px 0 120px;
}

.bridge-card {
  background: linear-gradient(145deg, rgba(249, 59, 30, 0.05), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bridge-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(249, 59, 30, 0.08) 0%, transparent 50%);
  animation: land-drift 12s ease-in-out infinite;
}
.bridge-card h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}
.bridge-card p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
  line-height: 1.6;
}
.bridge-card .land-btn {
  position: relative;
}

.land-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(21, 22, 28, 0.3);
}

.foot-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.27);
  font-family: "JetBrains Mono", monospace;
}

.foot-links {
  display: flex;
  gap: 20px;
}
.foot-links a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .land-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .ticket-3d {
    transform: rotateY(-8deg) rotateX(5deg) rotateZ(-2deg);
    width: 280px;
  }
  .split-grid {
    grid-template-columns: 1fr;
  }
  .land-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .land-hero {
    padding: 100px 0 60px;
  }
  .land-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .land-hero-cta .land-btn {
    width: 100%;
    justify-content: center;
  }
  .bridge-card {
    padding: 40px 24px;
  }
  .split-card {
    padding: 32px 24px;
  }
}
.city-hero {
  padding: 1.75rem;
}

.city-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.city-flag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f93b1e;
  border: 1px solid rgba(249, 59, 30, 0.35);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.6rem;
}

.city-name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.city-sub {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.city-sub .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.city-capital {
  color: #f93b1e;
}

.city-stats {
  display: flex;
  gap: 2rem;
}

.city-stat-num {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.city-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.city-altnames {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(135, 150, 165, 0.15);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.city-venues {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem;
}

.venue-card {
  background: #17181e;
  border: 1px solid rgba(135, 150, 165, 0.15);
  border-radius: 6px;
  padding: 1rem;
  transition: border-color 0.15s ease;
}
.venue-card:hover {
  border-color: rgba(249, 59, 30, 0.35);
}

.venue-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.venue-name {
  font-weight: 500;
  color: inherit;
  display: block;
}
.venue-name:hover {
  color: #f93b1e;
}

.venue-type {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: lowercase;
  white-space: nowrap;
}

.venue-address {
  margin-top: 0.3rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.venue-links {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.7rem;
}
.venue-links:empty {
  display: none;
}

.city-empty {
  background: #17181e;
  border: 1px dashed rgba(135, 150, 165, 0.15);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.city-empty .mint-btn {
  margin-top: 1rem;
}

.city-attribution {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(135, 150, 165, 0.15);
}

@media (max-width: 768px) {
  .city-hero-top {
    flex-direction: column;
  }
  .city-name {
    font-size: 1.6rem;
  }
  .city-stats {
    gap: 1.5rem;
  }
}
.city-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pager-btn {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(135, 150, 165, 0.15);
  border-radius: 4px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.pager-btn:hover {
  border-color: rgba(249, 59, 30, 0.35);
  color: #fff;
}
.pager-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pager-status {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.city-more {
  margin-top: 1.25rem;
  text-align: center;
}

.venue-hero {
  padding: 1.75rem;
}

.venue-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.venue-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.6rem;
}
.venue-breadcrumb a {
  color: #f93b1e;
}
.venue-breadcrumb a:hover {
  color: #fb6550;
}
.venue-breadcrumb .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.venue-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  overflow-wrap: anywhere;
}

.venue-sub {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.venue-sub .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.venue-type-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f93b1e;
  border: 1px solid rgba(249, 59, 30, 0.35);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

.venue-address-line {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.venue-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.venue-actions:empty {
  display: none;
}

.venue-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.venue-detail {
  background: #17181e;
  border: 1px solid rgba(135, 150, 165, 0.15);
  border-radius: 6px;
  padding: 1rem;
}

.venue-detail-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.3rem;
}

.venue-detail-value {
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}

.venue-map-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.venue-back {
  margin-top: 2rem;
  font-size: 0.875rem;
}
.venue-back a {
  color: #f93b1e;
}
.venue-back a:hover {
  color: #fb6550;
}

.mint-btn-ghost {
  background: transparent;
  border: 1px solid rgba(135, 150, 165, 0.15);
  color: rgba(255, 255, 255, 0.6);
}
.mint-btn-ghost:hover {
  border-color: rgba(249, 59, 30, 0.35);
  color: #fff;
}

@media (max-width: 768px) {
  .venue-hero-top {
    flex-direction: column;
  }
  .venue-title {
    font-size: 1.6rem;
  }
}
.venue-description {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 60ch;
}

.venue-access {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.venue-hours {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  line-height: 1.5;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.country-card {
  display: block;
  background: #17181e;
  border: 1px solid rgba(135, 150, 165, 0.15);
  border-radius: 6px;
  padding: 1rem;
  color: inherit;
}
.country-card:hover {
  border-color: rgba(249, 59, 30, 0.35);
}
.country-card:hover .country-name {
  color: #f93b1e;
}

.country-code {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f93b1e;
  border: 1px solid rgba(249, 59, 30, 0.35);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  margin-bottom: 0.5rem;
}

.country-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.country-stats {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.country-stats .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.city-list {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(135, 150, 165, 0.15);
}

.city-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(135, 150, 165, 0.15);
  color: inherit;
}
.city-row:hover {
  background: #17181e;
}
.city-row:hover .city-row-name {
  color: #f93b1e;
}

.city-row-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.city-row-name {
  font-weight: 500;
}

.city-row-badge {
  font-size: 0.75rem;
  color: #f93b1e;
}

.city-row-stats {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.city-row-stats .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.venue-map-wrap {
  margin: 1.5rem 0;
  border: 1px solid rgba(135, 150, 165, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

#venue-map {
  width: 100%;
  height: 420px;
}
@media (max-width: 768px) {
  #venue-map {
    height: 300px;
  }
}

.map-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.9rem;
  background: #17181e;
  border-top: 1px solid rgba(135, 150, 165, 0.15);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.map-legend-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 0.3rem;
}
.map-legend-dot.live {
  background: #f93b1e;
}
.map-legend-dot.bar {
  background: #5b8def;
}

.map-bars-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  margin-left: auto;
}

.map-popup {
  color: #fff;
  font-weight: 600;
}

.map-popup-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

/*
 * The standalone /map page. The embedded maps sit inside a card; this one
 * takes what is left of the viewport under the 60px nav.
 */
.map-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 60px);
}
.map-page #venue-map {
  flex: 1;
  height: auto;
}

.nav-search {
  position: relative;
  margin: 0;
}
.nav-search input {
  width: 180px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
}
.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.nav-search input:focus {
  border-color: rgba(249, 59, 30, 0.4);
}

#searchToggle {
  display: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 260px;
  max-height: 320px;
  overflow-y: auto;
  background: #15161c;
  border: 1px solid rgba(135, 150, 165, 0.15);
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 0.25rem;
  z-index: 60;
}

.search-result {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.search-result:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.search-kind {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  white-space: nowrap;
}

.search-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.search-section {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
}

.search-empty {
  color: rgba(255, 255, 255, 0.6);
}

/*
 * On a phone the nav has no room for a box -- at 320px .nav-links is
 * already down to a few pixels. The magnifier opens the field over the
 * nav instead.
 */
@media (max-width: 640px) {
  #searchToggle {
    display: grid;
  }
  .nav-search {
    display: none;
  }
  .nav-search.is-open {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    background: #0d0e12;
    z-index: 70;
  }
  .nav-search.is-open input {
    width: 100%;
  }
  .search-results {
    left: 0;
    right: 0;
    min-width: 0;
  }
}

/*# sourceMappingURL=style.css.map */
