:root {
  --figma-bg: #fff8f2;
  --figma-surface: #ffffff;
  --figma-surface-soft: #fff1e7;
  --figma-text: #1f2937;
  --figma-muted: #6b7280;
  --figma-border: rgba(15, 23, 42, 0.08);
  --figma-dark: #111827;
  --figma-gradient: linear-gradient(135deg, #f97316 0%, #ec4899 55%, #7c3aed 100%);
  --figma-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  --figma-radius: 28px;
}

body.figma-body {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.16), transparent 24%),
    var(--figma-bg);
  color: var(--figma-text);
}

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

.figma-header {
  position: relative;
  z-index: 50;
}

.figma-topbar {
  background: var(--figma-gradient);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.figma-topbar-inner {
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.figma-nav-wrap {
  position: relative;
  top: auto;
  z-index: 1;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--figma-border);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.28s ease, opacity 0.28s ease;
}

.figma-nav-wrap.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(249, 115, 22, 0.12);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.figma-header.is-floating {
  padding-top: 88px;
}

.figma-header.is-floating .figma-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 52;
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 992px) {
  .figma-header.is-floating .figma-nav-wrap {
    border-bottom-right-radius: 111px;
    border-bottom-left-radius: 111px;
  }

  .figma-footer {
    border-top-right-radius: 70px;
    border-top-left-radius: 70px;
  }
}

.figma-nav {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
}

.figma-brand img,
.figma-footer-brand img {
  display: block;
}

.figma-brand img {
  height: 65px;
  width: auto;
}

.figma-footer-brand img {
  max-height: 82px;
  width: auto;
}

.figma-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--figma-border);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(236, 72, 153, 0.14) 55%, rgba(124, 58, 237, 0.14) 100%);
  padding: 10px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.figma-nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--figma-gradient);
}

.figma-nav-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.figma-nav-links,
.figma-nav-actions {
  display: flex;
  align-items: center;
}

.figma-nav-links {
  justify-content: center;
  gap: 34px;
  text-transform: uppercase;
}

.figma-nav-actions {
  justify-content: flex-end;
}

.figma-nav-cta {
  min-height: 46px;
  padding: 0 22px;
  box-shadow: 0 18px 32px rgba(249, 115, 22, 0.24);
}

.figma-nav-cta span {
  line-height: 1;
}

.figma-scroll-orb {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 60;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 240, 0.95) 48%, rgba(248, 240, 255, 0.95) 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.figma-scroll-orb::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 249, 244, 0.96) 52%, rgba(250, 244, 255, 0.96) 100%);
}

.figma-scroll-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--figma-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.9;
}

.figma-scroll-orb.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.figma-scroll-orb:hover {
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.2);
}

.figma-scroll-orb__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--figma-gradient);
  box-shadow: 0 12px 26px rgba(236, 72, 153, 0.22);
  font-size: 16px;
  transition: transform 0.25s ease;
}

.figma-scroll-orb:hover .figma-scroll-orb__icon {
  transform: translateY(-1px);
}

.figma-nav-actions .figma-primary-btn i {
  margin-right: 8px;
}

 .figma-nav-links a,
.figma-nav-submenu a,
.figma-footer-links a,
.figma-footer-contact p,
.figma-ticket-meta span,
.figma-muted {
  color: var(--figma-muted);
}

.figma-nav-links > a,
.figma-nav-dropdown > a,
.figma-footer-links a {
  font-weight: 600;
}

.figma-nav-links > a,
.figma-nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #334155;
}

.figma-nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.figma-nav-links > a:hover::after {
  transform: scaleX(1);
}

.figma-nav-links a:hover,
.figma-nav-submenu a:hover,
.figma-footer-links a:hover {
  color: #f97316;
}

.figma-footer-contact {
  display: grid;
  gap: 0;
}

.figma-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  line-height: 1.75;
}

.figma-footer-contact p i {
  width: 22px;
  min-width: 22px;
  margin-top: 4px;
  font-size: 20px;
  text-align: center;
}

.figma-footer-contact p span {
  display: block;
  flex: 1;
}

.figma-nav-dropdown {
  position: relative;
}

.figma-nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--figma-border);
  border-radius: 20px;
  box-shadow: var(--figma-shadow);
  padding: 12px;
  display: none;
}

.figma-nav-dropdown:hover .figma-nav-submenu {
  display: grid;
  gap: 8px;
}

.figma-select,
.figma-input,
.figma-textarea,
.figma-page-card input,
.figma-page-card textarea,
.figma-page-card select,
.billing_details_area input,
.billing_details_area textarea,
.sidebar select,
.sidebar input[type="text"],
.sidebar input[type="file"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: none;
}

.figma-textarea,
.billing_details_area textarea {
  min-height: 120px;
}

.figma-primary-btn,
.figma-ghost-btn,
.theme-btn,
.btn,
button.theme-btn,
a.theme-btn {
  border-radius: 999px !important;
  font-weight: 700;
  transition: 0.3s ease;
}

.figma-primary-btn,
.theme-btn,
button.theme-btn,
a.theme-btn {
  background: var(--figma-gradient) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.22);
}

.figma-ghost-btn,
.btn {
  border: 1px solid var(--figma-border);
  background: #fff;
  color: var(--figma-text);
  padding: 12px 22px;
}

.figma-page {
  padding: 56px 0 88px;
}

.figma-page-hero,
.figma-home-hero,
.figma-dark-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 38px 38px;
}

.figma-home-hero {
  background: linear-gradient(135deg, #fff3e8 0%, #ffe4ef 52%, #f3e8ff 100%);
  padding: 88px 0 110px;
}

.figma-dark-hero {
  background: linear-gradient(135deg, #111827 0%, #3b0764 58%, #111827 100%);
  color: #fff;
  padding: 110px 0 84px;
}

.figma-page-hero {
  background: linear-gradient(135deg, #fff7ed 0%, #fde7f3 50%, #eef2ff 100%);
  padding: 72px 0 58px;
}

.figma-page-hero.figma-page-hero-strong {
  background: linear-gradient(135deg, #ea580c 0%, #db2777 52%, #7c3aed 100%);
}

.figma-page-hero-strong h1,
.figma-page-hero-strong h2,
.figma-page-hero-strong .figma-breadcrumb a,
.figma-page-hero-strong .figma-breadcrumb-current,
.figma-page-hero-strong .figma-lead {
  color: #fff;
}

.figma-page-hero-strong .figma-breadcrumb {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
}

.figma-page-hero-strong .figma-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.7);
}

.figma-home-grid,
.figma-two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.figma-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #f97316;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.figma-home-hero h1,
.figma-dark-hero h1,
.figma-page-hero h1,
.figma-page-hero h2 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 22px;
}

.figma-page-hero h1,
.figma-page-hero h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.figma-page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.figma-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-top: 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(8px);
}

.figma-breadcrumb a,
.figma-breadcrumb-current {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.figma-breadcrumb a:hover {
  color: #f97316;
}

.figma-breadcrumb-separator {
  color: #94a3b8;
  font-weight: 700;
}

.figma-gradient-text {
  background: var(--figma-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.figma-lead {
  font-size: 18px;
  line-height: 1.85;
  color: var(--figma-muted);
}

.figma-dark-hero .figma-lead,
.figma-dark-hero .figma-ticket-meta span,
.figma-dark-hero .figma-subtext {
  color: rgba(255, 255, 255, 0.75);
}

.figma-card,
.figma-glass-card,
.figma-page-card,
.event-details-content,
.billing_details_area,
.sidebar,
.booking-success,
.user-profile-details,
.contact-form,
.contact-information,
.faq-accordion .card {
  border-radius: var(--figma-radius);
  background: var(--figma-surface);
  border: 1px solid var(--figma-border);
  box-shadow: var(--figma-shadow);
}

.figma-card,
.figma-page-card,
.booking-success,
.contact-form,
.contact-information,
.billing_details_area,
.sidebar,
.user-profile-details {
  padding: 32px;
}

.figma-glass-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 24px;
}

.figma-stat-grid,
.figma-feature-grid,
.figma-highlight-grid,
.figma-gallery-grid,
.figma-sponsor-grid,
.figma-ticket-grid,
.figma-step-grid,
.figma-info-grid,
.figma-ticket-list {
  display: grid;
  gap: 22px;
}

.figma-stat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.figma-highlight-grid,
.figma-feature-grid,
.figma-ticket-grid {
  grid-template-columns: repeat(3, 1fr);
}

.figma-sponsor-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.figma-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.figma-gallery-grid a,
.figma-gallery-grid img,
.figma-media-card img,
.figma-poster img,
.figma-thumb img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.figma-gallery-grid a,
.figma-media-card,
.figma-poster,
.figma-thumb {
  overflow: hidden;
}

.figma-gallery-grid img,
.figma-thumb img {
  height: 100%;
  object-fit: cover;
}

.figma-masonry {
  column-count: 3;
  column-gap: 24px;
}

.figma-masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
}

.figma-section-heading {
  margin-bottom: 36px;
}

.figma-section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 14px;
  font-weight: 800;
}

.figma-section-heading p {
  max-width: 720px;
  color: var(--figma-muted);
  font-size: 17px;
  line-height: 1.8;
}

.figma-pill,
.figma-status,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

.figma-status-upcoming,
.badge-info {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.figma-status-running,
.badge-success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.figma-status-past,
.badge-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.figma-meta-row,
.figma-inline-list,
.event-details-header ul,
.time-info,
.package-summary,
.figma-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.figma-meta-item,
.event-details-header li,
.time-info li,
.package-summary li {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--figma-border);
  padding: 14px 16px;
}

.figma-dark-hero .figma-meta-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.figma-ticket-summary {
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
}

.figma-ticket-summary * {
  color: inherit;
}

.figma-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--figma-border);
}

.figma-step.is-active,
.figma-step.is-complete {
  border-color: rgba(249, 115, 22, 0.26);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.14);
}

.figma-step-index {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff1e7;
  color: #f97316;
  font-weight: 800;
}

.figma-check-step {
  display: none;
}

.figma-check-step.is-current {
  display: block;
}

.figma-tablist {
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--figma-border);
  padding: 8px;
}

.figma-tab-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  color: var(--figma-muted);
}

.figma-tab-btn.is-active {
  background: var(--figma-gradient);
  color: #fff;
}

.figma-ticket-card {
  display: grid;
  grid-template-columns: 170px 1fr 220px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--figma-border);
  box-shadow: var(--figma-shadow);
}

.figma-qr {
  width: 132px;
  height: 132px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  margin: 0 auto 14px;
}

.figma-faq-search {
  position: relative;
  margin-bottom: 30px;
}

.figma-faq-search input {
  padding-left: 52px;
}

.figma-faq-search i {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--figma-muted);
}

.faq-accordion .card {
  overflow: hidden;
  margin-bottom: 18px;
}

.faq-accordion .card-header {
  background: transparent;
  border: 0;
  padding: 0;
}

.faq-accordion .card-header a {
  display: block;
  padding: 24px 28px;
  color: var(--figma-text);
  font-size: 18px;
  font-weight: 700;
}

.faq-accordion .card-body {
  padding: 0 28px 28px;
  color: var(--figma-muted);
}

.figma-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.88);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.figma-lightbox.is-open {
  display: flex;
}

.figma-lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 24px;
}

.figma-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 28px;
}

.figma-footer {
  margin-top: 0;
  padding: 72px 0 24px;
  background: #0f172a;
  color: #fff;
}

.figma-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}

.figma-footer-brand {
  display: inline-block;
  margin-bottom: 18px;
}

.figma-footer h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  color:#fff;
}

.figma-footer-copy,
.figma-footer-links a,
.figma-footer-contact span,
.figma-footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.figma-footer-copy {
  margin-bottom: 24px;
}

.figma-socials,
.figma-footer-links {
  display: grid;
  gap: 12px;
}

.figma-socials {
  grid-auto-flow: column;
  justify-content: start;
}

.figma-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.figma-footer-contact p {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.figma-footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.figma-footer-policy-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.figma-footer-policy-links a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.figma-scrolltop {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--figma-gradient);
  color: #fff;
}

.page-banner,
.events-section,
.feature-section,
.testimonial-section,
.client-logo-area {
  background: transparent !important;
}

.event-details-images img {
  border-radius: 28px;
}

@media (max-width: 1199px) {
  .figma-nav {
    position: relative;
    grid-template-columns: auto auto;
    gap: 16px;
  }

  .figma-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    position: relative;
    z-index: 3;
  }

  .figma-nav-toggle span {
    flex: 0 0 auto;
    margin: 2.5px 0;
  }

  .figma-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 24px 20px;
    border: 1px solid var(--figma-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--figma-shadow);
    grid-template-columns: 1fr;
    gap: 18px;
    z-index: 2;
  }

  .figma-nav-panel.is-open,
  .figma-nav-wrap.is-open .figma-nav-panel {
    display: grid;
  }

  .figma-nav-links,
  .figma-nav-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
  }

  .figma-nav-links > a,
  .figma-nav-dropdown > a {
    width: 100%;
    min-height: 44px;
    padding: 6px 0;
  }

  .figma-nav-actions .home-btn-primary {
    width: 100%;
  }

  .figma-nav-submenu {
    position: static;
    display: grid;
    box-shadow: none;
    margin-top: 10px;
  }

  .figma-home-grid,
  .figma-two-col,
  .figma-ticket-card,
  .figma-footer-grid {
    grid-template-columns: 1fr;
  }

  .figma-stat-grid,
  .figma-highlight-grid,
  .figma-feature-grid,
  .figma-sponsor-grid,
  .figma-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .figma-nav-wrap {
    backdrop-filter: none;
  }

  .figma-nav {
    min-height: 76px;
  }

  .figma-header.is-floating {
    padding-top: 76px;
  }

  .figma-brand img {
    height: 52px;
  }

  .figma-nav-panel {
    padding: 20px 18px;
  }

  .figma-scroll-orb {
    right: 16px;
    bottom: 84px;
    width: 58px;
    height: 58px;
  }

  .figma-scroll-orb__icon {
    width: 44px;
    height: 44px;
  }

  .figma-topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    text-align: center;
  }

  .figma-home-hero,
  .figma-dark-hero,
  .figma-page-hero,
  .figma-page {
    padding-left: 0;
    padding-right: 0;
  }

  .figma-card,
  .figma-page-card,
  .booking-success,
  .contact-form,
  .contact-information,
  .billing_details_area,
  .sidebar,
  .user-profile-details {
    padding: 22px;
  }

  .figma-stat-grid,
  .figma-highlight-grid,
  .figma-feature-grid,
  .figma-sponsor-grid,
  .figma-gallery-grid,
  .figma-ticket-grid {
    grid-template-columns: 1fr;
  }

  .figma-masonry {
    column-count: 1;
  }

  .figma-ticket-card {
    padding: 18px;
  }

  .figma-footer-bottom {
    flex-direction: column;
  }

  .figma-footer-policy-links {
    justify-content: center;
  }
}





.figma-nav-actions .home-btn-primary {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--figma-gradient) !important;
  color: #fff !important;
  box-shadow: 0 18px 32px rgba(249, 115, 22, 0.24);
}

.figma-nav-actions .home-btn-primary i {
  margin-right: 0;
}

.figma-nav-actions .home-btn-primary span {
  line-height: 1;
}
