/* ============================================================
   UNITY FESTIVAL MELBOURNE — CSS
   Musical & Comedy Night · Eid & Easter Mela
   ============================================================ */

/* --- Variables --- */
:root {
  --unity-bg: #fff7ef;
  --unity-surface: rgba(255, 253, 248, 0.94);
  --unity-surface-strong: rgba(255, 245, 228, 0.96);
  --unity-ink: #4b221e;
  --unity-muted: #7b4a43;
  --unity-red: #a92b1e;
  --unity-rose: #ef7f8e;
  --unity-peach: #f7c780;
  --unity-cream: #fff0bd;
  --unity-gold: #f1b24d;
  --unity-line: rgba(169, 43, 30, 0.16);
  --unity-shadow: 0 24px 60px rgba(125, 44, 30, 0.14);
  --unity-glass: rgba(255, 251, 245, 0.26);
  --unity-glass-strong: rgba(255, 252, 247, 0.4);
  --unity-glass-soft: rgba(255, 255, 255, 0.18);
  --unity-glass-border: rgba(255, 255, 255, 0.42);
  --unity-glass-shadow: 0 24px 52px rgba(111, 40, 27, 0.14);
}

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

html,
body {
  min-height: 100%;
}

/* --- Body & Background --- */
body.unity-body {
  margin: 0;
  color: var(--unity-ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 90% 0%, rgba(255, 232, 187, 0.7), rgba(255, 232, 187, 0) 24%),
    linear-gradient(180deg, #ff92a1 0%, #ffc38c 46%, #fff2cc 100%);
}

/* --- Navbar Overrides --- */
.unity-body .navbar {
  padding: 0.55rem 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.46), rgba(255, 246, 236, 0.24)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 14px 36px rgba(116, 38, 25, 0.09) !important;
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.unity-body .navbar .container {
  gap: 0.85rem;
  align-items: center;
}

.unity-body .navbar-brand {
  flex: 0 1 auto;
  min-width: 0;
  gap: 0.72rem !important;
  text-decoration: none;
}

.unity-body .navbar-brand > span {
  min-width: 0;
}

.unity-body .brand-logo-img {
  width: auto;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(169, 43, 30, 0.12));
}

.unity-body .mat-icon {
  font-family: "Material Symbols Outlined";
  font-weight: 500;
  font-size: 1.05rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b1472a;
  transition: transform 0.18s ease, color 0.18s ease;
}

.unity-body .small-heading {
  display: block;
  max-width: 250px;
  font-size: 0.7rem;
  line-height: 1.05;
  letter-spacing: 0.015em;
  color: #67281d;
}

.unity-body .brand-sub {
  display: block;
  margin-top: 0.14rem;
  font-size: 0.52rem;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(103, 40, 29, 0.68);
}

.unity-body .navbar-nav {
  gap: 0.18rem;
}

.unity-body .navbar-toggler {
  padding: 0.36rem 0.56rem;
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 248, 239, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.unity-body .navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(169, 43, 30, 0.12);
}

.unity-body .nav-link,
.unity-body .dropdown-toggle {
  border-radius: 999px;
  padding: 0.5rem 0.82rem !important;
  font-size: 0.92rem;
  font-weight: 800;
  color: #6f3124 !important;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 249, 241, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.unity-body .nav-link:hover,
.unity-body .nav-link:focus-visible,
.unity-body .dropdown-toggle:hover,
.unity-body .dropdown-toggle:focus-visible {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 249, 241, 0.2));
  color: var(--unity-red) !important;
  border-color: rgba(255, 255, 255, 0.44);
  transform: translateY(-1px);
}

.unity-body .nav-link.active,
.unity-body .dropdown-toggle.active {
  background: linear-gradient(180deg, rgba(255, 242, 225, 0.5), rgba(255, 230, 210, 0.22));
  color: var(--unity-red) !important;
  border-color: rgba(255, 233, 214, 0.6);
}

.unity-body .nav-link:hover .mat-icon,
.unity-body .nav-link:focus-visible .mat-icon,
.unity-body .dropdown-toggle:hover .mat-icon,
.unity-body .dropdown-toggle:focus-visible .mat-icon {
  transform: translateY(-1px);
  color: var(--unity-red);
}

.unity-body .dropdown-menu {
  padding: 0.55rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.54), rgba(255, 243, 231, 0.34));
  box-shadow: 0 18px 38px rgba(116, 38, 25, 0.12);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.unity-body .dropdown-item {
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  font-weight: 700;
  color: #6f3124;
}

.unity-body .dropdown-item:hover,
.unity-body .dropdown-item:focus-visible {
  background: rgba(255, 255, 255, 0.32);
  color: var(--unity-red);
}

.unity-body .btn-main {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 241, 226, 0.18));
  color: #6b2f24;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 30px rgba(169, 43, 30, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.unity-body .btn-main:hover,
.unity-body .btn-main:focus-visible {
  color: #5e2419;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 237, 220, 0.24));
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.unity-body #loginNavBtn,
.unity-body button[data-bs-target="#modalJoinPending"] {
  padding: 0.56rem 0.96rem !important;
}

.unity-body .btn-flag-pk {
  padding-left: 2.75rem !important;
}

.unity-body .btn-flag-pk::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
  background: url("pakistani-flag.svg") center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

/* --- Glass base for cards --- */
.unity-stage-shell,
.unity-showcase-shell,
.unity-showcase-card,
.unity-showcase-mini-card,
.unity-landing-cast-card,
.unity-panel,
.unity-step-card,
.unity-mini-card,
.unity-count-item,
.unity-modal,
.ticket-card,
.guest-card,
.qr-wrap,
.duplicate-help,
.unity-artist-card,
.unity-exp-card {
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

/* ============================================================
   MAIN & HERO
   ============================================================ */
.unity-main {
  position: relative;
  overflow: hidden;
}

.unity-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.unity-ribbon {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.unity-ribbon-left {
  top: 2rem;
  left: -5rem;
  background: rgba(255, 255, 255, 0.6);
}

.unity-ribbon-right {
  top: 3rem;
  right: -5rem;
  background: rgba(255, 193, 122, 0.8);
}

.unity-hero-inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  overflow: visible;
}

/* --- Event Badges --- */
.unity-event-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem;
}

.unity-event-badges span {
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 247, 239, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-weight: 800;
  font-size: 0.82rem;
  color: #7f3629;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* --- Hero Text --- */
.unity-hero-text {
  max-width: 640px;
}

.unity-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(169, 43, 30, 0.09);
  border: 1px solid rgba(169, 43, 30, 0.08);
  color: var(--unity-red);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.unity-title {
  margin-top: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 0.82;
  letter-spacing: 0.04em;
  color: var(--unity-red);
  text-transform: uppercase;
  text-shadow: 0 6px 32px rgba(169, 43, 30, 0.12);
  display: inline-block;
  transform: scaleY(1.18);
  transform-origin: left bottom;
}

.unity-subtitle {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  color: #c63d1e;
  margin-top: 0.5rem;
}

.unity-stage-line {
  margin-top: 0.4rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a3421;
  background: linear-gradient(90deg, #a92b1e 0%, #f1b24d 50%, #a92b1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unity-lead {
  max-width: 680px;
  margin: 1rem 0 0;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--unity-muted);
}

/* --- Hero Split Layout --- */
.unity-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
}

.unity-hero-cast-side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
  min-width: 0;
}

.unity-hero-info-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

/* --- Cast selector tabs --- */
.unity-cast-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.unity-cast-tab {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 244, 230, 0.2));
  color: #7a3426;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 18px rgba(125, 44, 30, 0.08);
}

.unity-cast-tab:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 240, 222, 0.32));
  border-color: rgba(255, 255, 255, 0.54);
  transform: translateY(-1px);
}

.unity-cast-tab.is-active {
  background: linear-gradient(145deg, rgba(169, 43, 30, 0.84), rgba(215, 90, 60, 0.62));
  border-color: rgba(255, 210, 180, 0.3);
  color: #fff5ee;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 22px rgba(169, 43, 30, 0.22);
}

/* --- Cast detail panel --- */
.unity-cast-detail-panel {
  position: relative;
  min-height: 110px;
}

.unity-cast-detail {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 244, 230, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 36px rgba(111, 40, 27, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: castDetailIn 0.26s ease;
}

.unity-cast-detail.is-active {
  display: block;
}

@keyframes castDetailIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.unity-cast-detail-role {
  display: inline-flex;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(169, 43, 30, 0.12), rgba(169, 43, 30, 0.04));
  border: 1px solid rgba(169, 43, 30, 0.1);
  color: var(--unity-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.unity-cast-detail-name {
  margin: 0 0 0.38rem;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: #802418;
  line-height: 1.1;
}

.unity-cast-detail-bio {
  margin: 0;
  color: var(--unity-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Character interaction states --- */
.unity-character {
  transition: opacity 0.28s ease, filter 0.28s ease, transform 0.28s ease;
}

.unity-character.cast-dim {
  opacity: 0.54;
  transform: translateX(var(--cast-x, 0)) translateY(var(--cast-y, 0)) scale(0.985);
  filter: saturate(0.78) brightness(0.92) drop-shadow(0 16px 22px rgba(85, 31, 21, 0.14));
}

.unity-character.cast-active {
  opacity: 1;
  transform: translateX(var(--cast-x, 0)) translateY(calc(var(--cast-y, 0) - 10px)) scale(1.025);
  z-index: 10;
  filter: drop-shadow(0 20px 28px rgba(85, 31, 21, 0.26));
}

.unity-character-placeholder.cast-dim {
  opacity: 0.88;
  filter: saturate(0.96) brightness(0.98) drop-shadow(0 10px 16px rgba(85, 31, 21, 0.08));
}

.unity-character-placeholder.cast-active {
  filter: drop-shadow(0 16px 24px rgba(85, 31, 21, 0.16));
}

/* --- Quick info row --- */
.unity-hero-quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.unity-quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.68rem 0.9rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 244, 230, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.87rem;
  font-weight: 700;
  color: #7a3426;
}

.unity-quick-info-item .material-symbols-outlined {
  font-size: 1.15rem;
  color: var(--unity-red);
  flex-shrink: 0;
}

.unity-showcase-shell {
  position: relative;
  padding: 1.25rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 249, 241, 0.72), rgba(255, 233, 212, 0.46)),
    radial-gradient(circle at top left, rgba(255, 227, 166, 0.36), rgba(255, 227, 166, 0) 42%);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 28px 72px rgba(98, 30, 20, 0.16);
  overflow: hidden;
}

.unity-showcase-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(255, 232, 187, 0.54), rgba(255, 232, 187, 0) 34%),
    radial-gradient(circle at 100% 100%, rgba(169, 43, 30, 0.14), rgba(169, 43, 30, 0) 36%);
  pointer-events: none;
}

.unity-showcase-header,
.unity-showcase-grid,
.unity-landing-cast-grid {
  position: relative;
  z-index: 1;
}

.unity-showcase-kicker {
  margin: 0 0 0.42rem;
  color: var(--unity-red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.unity-showcase-header h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.08;
  color: #7f2318;
}

.unity-showcase-header p {
  margin: 0.72rem 0 0;
  color: var(--unity-muted);
  line-height: 1.65;
}

.unity-landing-cast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.unity-landing-cast-card {
  display: grid;
  grid-template-columns: minmax(110px, 0.82fr) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: stretch;
  min-height: 196px;
  padding: 0.95rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 244, 232, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 42px rgba(111, 40, 27, 0.12);
  overflow: hidden;
}

.unity-landing-cast-card-feature {
  grid-column: span 2;
  grid-template-columns: minmax(170px, 0.88fr) minmax(0, 1fr);
  min-height: 236px;
}

.unity-landing-cast-card-gold {
  background: linear-gradient(180deg, rgba(255, 246, 220, 0.82), rgba(255, 232, 194, 0.56));
}

.unity-landing-cast-card-placeholder {
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.78), rgba(255, 233, 214, 0.5));
}

.unity-landing-cast-media {
  min-height: 100%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 231, 183, 0.54), rgba(255, 231, 183, 0) 36%),
    linear-gradient(180deg, rgba(255, 248, 238, 0.84), rgba(247, 215, 183, 0.58));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-top: 0.75rem;
}

.unity-landing-cast-media img {
  width: 100%;
  max-width: 190px;
  max-height: 240px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 24px rgba(85, 31, 21, 0.18));
}

.unity-landing-cast-media-compact img {
  max-width: 150px;
  max-height: 186px;
}

.unity-landing-cast-media-placeholder {
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
}

.unity-landing-cast-media-placeholder span {
  color: rgba(107, 48, 39, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unity-landing-cast-media-placeholder strong {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  line-height: 1.08;
  color: #8f2819;
}

.unity-landing-cast-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.38rem;
}

.unity-landing-cast-role {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(169, 43, 30, 0.12), rgba(169, 43, 30, 0.04));
  border: 1px solid rgba(169, 43, 30, 0.1);
  color: var(--unity-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unity-landing-cast-copy h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: #802418;
}

.unity-landing-cast-copy p {
  margin: 0;
  color: var(--unity-muted);
  line-height: 1.55;
}

.unity-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 1rem;
  margin-top: 1rem;
}

.unity-showcase-poster {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 246, 238, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.unity-showcase-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.unity-showcase-poster-badge {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: grid;
  gap: 0.16rem;
  padding: 0.82rem 0.9rem;
  border-radius: 18px;
  background: rgba(79, 28, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff8f0;
}

.unity-showcase-poster-badge span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 246, 233, 0.74);
}

.unity-showcase-poster-badge strong {
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  line-height: 1.15;
}

.unity-showcase-stack {
  display: grid;
  gap: 0.9rem;
}

.unity-showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.9rem;
  min-height: 184px;
  padding: 1rem 1rem 0;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 244, 232, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 42px rgba(111, 40, 27, 0.12);
  overflow: hidden;
}

.unity-showcase-card-alt {
  background: linear-gradient(180deg, rgba(255, 246, 220, 0.8), rgba(255, 232, 194, 0.54));
}

.unity-showcase-card-copy {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
}

.unity-showcase-role {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(169, 43, 30, 0.12), rgba(169, 43, 30, 0.04));
  border: 1px solid rgba(169, 43, 30, 0.1);
  color: var(--unity-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unity-showcase-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  color: #802418;
}

.unity-showcase-card p {
  margin: 0;
  color: var(--unity-muted);
  line-height: 1.55;
}

.unity-showcase-card img {
  width: min(144px, 36vw);
  max-height: 192px;
  object-fit: contain;
  align-self: end;
  filter: drop-shadow(0 18px 26px rgba(85, 31, 21, 0.2));
}

.unity-showcase-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.unity-showcase-mini-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.45rem;
  min-height: 112px;
  padding: 0.95rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.64), rgba(255, 243, 229, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 12px 28px rgba(111, 40, 27, 0.08);
}

.unity-showcase-mini-card-text {
  background: linear-gradient(145deg, rgba(169, 43, 30, 0.14), rgba(255, 226, 195, 0.56));
}

.unity-showcase-mini-card strong {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  line-height: 1.1;
  color: #7a2618;
}

.unity-showcase-mini-card span {
  color: var(--unity-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   STAGE SHELL & CHARACTERS
   ============================================================ */
.unity-stage-shell {
  position: relative;
  width: 100%;
  max-width: 820px;
  flex: 1 1 0;
  min-height: clamp(360px, 46vw, 560px);
  border-radius: 30px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.2), rgba(255, 233, 214, 0.1)),
    radial-gradient(circle at 50% 10%, rgba(255, 218, 145, 0.18), rgba(255, 218, 145, 0) 40%);
  border: 1px solid rgba(255, 245, 226, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 44px rgba(83, 18, 18, 0.12);
  overflow: hidden;
}

.unity-stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 237, 176, 0.34), rgba(255, 237, 176, 0) 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 237, 176, 0.34), rgba(255, 237, 176, 0) 28%),
    linear-gradient(180deg, rgba(122, 22, 18, 0) 48%, rgba(84, 15, 17, 0.18) 100%);
  pointer-events: none;
}

.unity-stage-shell::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0.3rem;
  height: 4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 40, 27, 0.22), rgba(111, 40, 27, 0) 72%);
  filter: blur(20px);
  opacity: 0.5;
  pointer-events: none;
}

.unity-stage-banner {
  position: absolute;
  top: 0.95rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 0.44rem 0.88rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 220, 164, 0.28), rgba(168, 37, 28, 0.14));
  border: 1px solid rgba(255, 232, 194, 0.24);
  color: #fff5df;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.unity-character-stage {
  position: absolute;
  inset: 2.85rem 0.8rem 0.65rem 0.8rem;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.unity-character-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 6%, rgba(255, 239, 202, 0.42), rgba(255, 239, 202, 0) 24%),
    radial-gradient(circle at 80% 10%, rgba(255, 236, 190, 0.38), rgba(255, 236, 190, 0) 24%),
    linear-gradient(180deg, rgba(255, 251, 245, 0) 55%, rgba(114, 39, 28, 0.08) 100%);
  opacity: 0.84;
  pointer-events: none;
}

.unity-character-stage::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.5rem;
  height: 2.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 40, 27, 0.18), rgba(111, 40, 27, 0) 72%);
  filter: blur(16px);
  opacity: 0.52;
  pointer-events: none;
}

.unity-character {
  position: absolute;
  bottom: 0;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  border: 0;
  padding: 0;
  background: none;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(var(--cast-x, 0)) translateY(var(--cast-y, 0));
  transform-origin: center bottom;
  filter: drop-shadow(0 18px 26px rgba(85, 31, 21, 0.24));
}

.unity-character-placeholder {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.22rem;
  width: auto;
  height: auto;
  padding: 0.58rem 0.95rem 0.52rem;
  min-height: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 245, 226, 0.58);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 226, 167, 0.48), rgba(255, 226, 167, 0) 58%),
    linear-gradient(180deg, rgba(255, 249, 240, 0.96), rgba(247, 215, 183, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 10px 18px rgba(85, 31, 21, 0.12);
  text-align: center;
}

.unity-character-placeholder span,
.unity-character-placeholder strong {
  position: relative;
  z-index: 1;
}

.unity-character-placeholder span {
  color: rgba(107, 48, 39, 0.82);
  font-size: clamp(0.4rem, 0.65vw, 0.54rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.unity-character-placeholder strong {
  font-family: "Fraunces", serif;
  font-size: clamp(0.74rem, 0.9vw, 0.92rem);
  line-height: 1.04;
  color: #8f2819;
  white-space: nowrap;
}

/* Left to right: Sajjad (big) → Faisal (medium) → Mitha (small-med) → Umer (small) → Malkoo (big) */
.unity-character-sajjad {
  width: clamp(205px, 35%, 270px);
  --cast-y: 0rem;
  left: -1%;
  z-index: 5;
}

.unity-character-faisal {
  width: clamp(92px, 14vw, 126px);
  height: clamp(92px, 14vw, 126px);
  left: 24%;
  bottom: 0.9rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 247, 234, 0.94);
  object-fit: cover;
  object-position: center 18%;
  background: rgba(255, 246, 235, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 16px 24px rgba(111, 40, 27, 0.16);
  z-index: 7;
}

.unity-character-mitha {
  --cast-x: -50%;
  --cast-y: 0rem;
  left: 50%;
  bottom: 1.15rem;
  z-index: 8;
}

.unity-character-umer {
  width: clamp(90px, 13.5vw, 122px);
  height: clamp(90px, 13.5vw, 122px);
  right: 24%;
  bottom: 0.85rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 247, 234, 0.94);
  object-fit: cover;
  object-position: center 16%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 16px 24px rgba(111, 40, 27, 0.16);
  z-index: 7;
}

.unity-character-malkoo {
  width: clamp(190px, 32%, 250px);
  --cast-y: 0.05rem;
  right: 0;
  z-index: 5;
}

/* --- Character Badges --- */
.unity-character-badge {
  position: absolute;
  display: grid;
  gap: 0.12rem;
  padding: 0.6rem 0.82rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 244, 233, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 12px 22px rgba(111, 40, 27, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.unity-character-badge span {
  font-size: 0.66rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(107, 48, 39, 0.78);
  font-weight: 800;
}

.unity-character-badge strong {
  color: var(--unity-red);
  font-family: "Fraunces", serif;
  font-size: 1rem;
  line-height: 1.05;
}

.unity-character-badge-sajjad {
  left: 6%;
  bottom: 7rem;
  z-index: 6;
}

.unity-character-badge-malkoo {
  right: 5%;
  bottom: 7rem;
  z-index: 6;
  text-align: right;
}

/* --- Cast Strip --- */
.unity-cast-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.unity-cast-strip span {
  padding: 0.44rem 0.78rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(169, 43, 30, 0.16), rgba(118, 21, 19, 0.08));
  border: 1px solid rgba(255, 222, 184, 0.2);
  color: #7a2f22;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.unity-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.8rem;
}

.btn-unity-primary,
.btn-unity-secondary,
.btn-unity-ghost {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 16px 28px rgba(125, 44, 30, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-unity-primary {
  background: linear-gradient(145deg, rgba(184, 46, 31, 0.8), rgba(241, 122, 82, 0.55));
  color: #fff8f1;
}

.btn-unity-primary:hover,
.btn-unity-primary:focus-visible {
  background: linear-gradient(145deg, rgba(161, 33, 20, 0.88), rgba(240, 122, 61, 0.62));
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 20px 36px rgba(125, 44, 30, 0.18);
}

.btn-unity-secondary {
  background: linear-gradient(145deg, rgba(255, 244, 201, 0.56), rgba(255, 212, 131, 0.36));
  color: #7b2f22;
}

.btn-unity-secondary:hover,
.btn-unity-secondary:focus-visible {
  color: #662418;
  background: linear-gradient(145deg, rgba(255, 240, 182, 0.7), rgba(255, 201, 111, 0.44));
  transform: translateY(-2px);
}

.btn-unity-ghost {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 247, 239, 0.18));
  color: var(--unity-red);
}

.btn-unity-ghost:hover,
.btn-unity-ghost:focus-visible {
  color: #842113;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 247, 239, 0.26));
  transform: translateY(-2px);
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.unity-countdown-wrap {
  width: 100%;
  max-width: 580px;
}

.unity-countdown-board {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 0.8rem;
  width: 100%;
}

.unity-count-item {
  padding: 0.95rem 0.8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 247, 239, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.32);
  text-align: center;
}

.unity-count-item span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.15rem;
  line-height: 1;
  color: var(--unity-red);
}

.unity-count-item small {
  color: var(--unity-muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.unity-countdown-state {
  margin-top: 0.85rem;
  color: #7d3d33;
  font-weight: 700;
  text-align: left;
}

/* --- Mela Border --- */
.unity-mela-border {
  height: 42px;
  background:
    linear-gradient(180deg, transparent, rgba(255, 250, 239, 0.45)),
    repeating-linear-gradient(
      90deg,
      #f08a5b 0 14px,
      #f9be62 14px 28px,
      #d8432b 28px 42px,
      #ffdf8c 42px 56px
    );
  clip-path: polygon(0 100%, 0 34%, 3% 62%, 6% 28%, 9% 60%, 12% 22%, 15% 58%, 18% 34%, 21% 62%, 24% 24%, 27% 58%, 30% 32%, 33% 64%, 36% 24%, 39% 58%, 42% 34%, 45% 62%, 48% 22%, 51% 60%, 54% 32%, 57% 64%, 60% 24%, 63% 58%, 66% 34%, 69% 62%, 72% 26%, 75% 60%, 78% 32%, 81% 62%, 84% 24%, 87% 58%, 90% 32%, 93% 60%, 96% 28%, 100% 100%);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.unity-section {
  padding: 4.4rem 0;
}

.unity-section-soft {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.28), rgba(255, 255, 255, 0.16));
}

.unity-section-head {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.unity-section-kicker {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--unity-red);
  text-transform: uppercase;
}

.unity-section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #86271a;
  line-height: 1.1;
}

.unity-section-head p {
  color: var(--unity-muted);
  line-height: 1.7;
}

/* ============================================================
   LINEUP — PERFORMER CARDS
   ============================================================ */
.unity-lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.unity-artist-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.38), rgba(255, 244, 232, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--unity-glass-shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.unity-artist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(111, 40, 27, 0.18);
}

.unity-artist-headline {
  grid-column: span 1;
}

.unity-artist-card:nth-child(n+3) {
  /* Supporting cast: 3 cards in a row */
}

.unity-artist-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 240, 220, 0.2), rgba(169, 43, 30, 0.08));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.unity-artist-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 22px rgba(85, 31, 21, 0.2));
}

.unity-artist-img-wrap-placeholder {
  align-items: stretch;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 228, 176, 0.58), rgba(255, 228, 176, 0) 34%),
    linear-gradient(180deg, rgba(255, 248, 238, 0.82), rgba(247, 215, 183, 0.62));
}

.unity-artist-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.32rem;
  padding: 1.35rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(169, 43, 30, 0.08), rgba(255, 255, 255, 0.26));
}

.unity-artist-placeholder span {
  color: rgba(107, 48, 39, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unity-artist-placeholder strong {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1.08;
  color: #8f2819;
}

.unity-artist-info {
  padding-top: 1rem;
}

.unity-artist-role {
  display: inline-block;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(169, 43, 30, 0.12), rgba(169, 43, 30, 0.06));
  border: 1px solid rgba(169, 43, 30, 0.1);
  color: var(--unity-red);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.unity-artist-info h3 {
  font-family: "Fraunces", serif;
  color: #8f2819;
  font-size: 1.45rem;
  margin: 0.6rem 0 0.4rem;
}

.unity-artist-headline .unity-artist-info h3 {
  font-size: 1.7rem;
}

.unity-artist-info p {
  color: var(--unity-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Force last 3 cards (supporting cast) into 3-column row */
.unity-lineup-grid > .unity-artist-card:nth-child(n+3) {
  grid-column: span 1;
}

/* ============================================================
   EXPERIENCE — WHAT'S ON CARDS
   ============================================================ */
.unity-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.unity-exp-card {
  border-radius: 26px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.36), rgba(255, 244, 232, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--unity-glass-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.unity-exp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(111, 40, 27, 0.18);
}

.unity-exp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(169, 43, 30, 0.14), rgba(241, 178, 77, 0.12));
  border: 1px solid rgba(255, 230, 196, 0.28);
  color: var(--unity-red) !important;
  font-size: 1.55rem !important;
  margin-bottom: 1rem;
}

.unity-exp-card h3 {
  font-family: "Fraunces", serif;
  color: #8f2819;
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.unity-exp-card p {
  color: var(--unity-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   STEPS / HOW TO ATTEND
   ============================================================ */
.unity-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.unity-step-card {
  border-radius: 28px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 244, 232, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--unity-glass-shadow);
}

.unity-step-no {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #a92b1e, #ef7f55);
  color: #fff9f3;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.unity-step-card h3 {
  font-family: "Fraunces", serif;
  color: #922717;
  margin-bottom: 0.75rem;
}

.unity-step-card p {
  color: var(--unity-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.unity-steps-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================
   INFO GRID & PANELS
   ============================================================ */
.unity-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.25rem;
}

.unity-panel {
  border-radius: 28px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.36), rgba(255, 244, 232, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--unity-glass-shadow);
}

.unity-panel h3 {
  font-family: "Fraunces", serif;
  color: #922717;
  margin-bottom: 1rem;
}

.unity-list {
  padding-left: 1rem;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  color: var(--unity-muted);
}

.unity-org-block {
  display: grid;
  gap: 0.75rem;
}

.unity-org-line {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--unity-red);
  line-height: 1;
  letter-spacing: 0.04em;
}

.unity-organized-by,
.unity-presented-by {
  font-size: 0.84rem;
  color: var(--unity-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.unity-side-image {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(169, 43, 30, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   FOOTER
   ============================================================ */
.unity-footer {
  padding: 1.5rem 0 2rem;
  color: #7a4139;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.24), rgba(255, 243, 233, 0.16));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ============================================================
   MODALS & FORMS
   ============================================================ */
.unity-modal {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.72) 0%, rgba(255, 243, 227, 0.5) 100%);
  color: var(--unity-ink);
  box-shadow: 0 26px 64px rgba(111, 40, 27, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.unity-modal .modal-title {
  font-family: "Fraunces", serif;
  color: #8f2819;
}

.unity-modal .btn-close {
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  opacity: 0.78;
}

.unity-modal .form-control,
.unity-modal .form-select {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 247, 239, 0.18));
  color: var(--unity-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.unity-modal .form-control::placeholder {
  color: rgba(91, 46, 39, 0.56);
}

.unity-modal .form-control:focus,
.unity-modal .form-select:focus {
  border-color: rgba(255, 240, 221, 0.66);
  box-shadow:
    0 0 0 0.16rem rgba(169, 43, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 247, 239, 0.24));
}

.modal-note,
.retrieve-inline,
.ticket-help,
.duplicate-help,
.form-text {
  color: var(--unity-muted) !important;
}

.duplicate-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 244, 194, 0.34), rgba(255, 236, 176, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.retrieve-link-btn {
  color: #8f2819;
  font-weight: 800;
  text-decoration: none;
}

.retrieve-link-btn:hover,
.retrieve-link-btn:focus-visible {
  color: #73180f;
}

.section-divider {
  margin: 1.5rem 0;
  border-color: rgba(169, 43, 30, 0.12);
}

.guest-block-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.guest-badge {
  background: rgba(255, 255, 255, 0.24);
  color: #8f2819;
}

.guest-fields {
  display: grid;
  gap: 1rem;
}

.guest-card {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 244, 232, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.guest-card h6 {
  font-family: "Fraunces", serif;
  color: #8f2819;
  margin-bottom: 0.85rem;
}

/* --- Ticket Card --- */
.ticket-card {
  padding: 1.25rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 243, 224, 0.26)) padding-box,
    linear-gradient(135deg, rgba(255, 239, 191, 0.8) 0%, rgba(240, 168, 69, 0.58) 50%, rgba(169, 43, 30, 0.8) 100%) border-box;
  border: 2px solid transparent;
  box-shadow: var(--unity-glass-shadow);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.ticket-card h4 {
  font-family: "Fraunces", serif;
  color: #8f2819;
}

.ticket-name {
  color: #7d3429;
  font-weight: 800;
}

.ticket-line {
  margin-bottom: 0.45rem;
  color: var(--unity-ink);
}

.qr-wrap {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 246, 237, 0.2));
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.qr-wrap canvas,
.qr-wrap img {
  max-width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 0.45rem;
}

/* ============================================================
   ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .unity-hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 1.5rem;
  }

  .unity-showcase-grid {
    grid-template-columns: 1fr;
  }

  .unity-landing-cast-card-feature {
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1fr);
  }

  .unity-stage-shell {
    min-height: clamp(340px, 52vw, 520px);
  }

  .unity-lineup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .unity-body .navbar {
    padding: 0.45rem 0;
  }

  .unity-body .navbar-brand {
    max-width: calc(100% - 52px);
  }

  .unity-body .brand-logo-img {
    height: 28px;
  }

  .unity-body .small-heading {
    max-width: none;
    font-size: 0.64rem;
  }

  .unity-body .brand-sub {
    display: none;
  }

  .unity-body .navbar-collapse {
    margin-top: 0.55rem;
    padding-top: 0.3rem;
  }

  .unity-body .navbar-collapse.show,
  .unity-body .navbar-collapse.collapsing {
    padding: 0.55rem;
    border-radius: 20px;
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid rgba(169, 43, 30, 0.1);
  }

  .unity-body .navbar-nav {
    gap: 0.4rem;
    align-items: stretch !important;
  }

  .unity-body .nav-link,
  .unity-body .dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .unity-body .btn-main {
    width: 100%;
    box-shadow: none;
  }

  .unity-hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(252px, 0.9fr);
    gap: 1rem;
    align-items: center;
  }

  .unity-hero-info-side {
    padding-top: 0;
    gap: 0.7rem;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }

  .unity-kicker {
    justify-content: flex-start;
  }

  .unity-cta-row {
    justify-content: flex-start;
  }

  .unity-event-badges {
    justify-content: flex-start;
  }

  .unity-showcase-poster {
    min-height: 320px;
  }

  .unity-showcase-card img {
    width: min(132px, 28vw);
  }

  .unity-landing-cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unity-lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unity-exp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unity-steps-grid,
  .unity-info-grid {
    grid-template-columns: 1fr;
  }

  .unity-stage-shell {
    min-height: clamp(320px, 64vw, 500px);
  }

  .unity-character-stage {
    inset: 2.7rem 0.55rem 0.55rem 0.55rem;
  }

  .unity-character-sajjad {
    width: clamp(180px, 34%, 230px);
    left: 0;
  }

  .unity-character-faisal {
    width: 102px;
    height: 102px;
    left: 27%;
    bottom: 0.72rem;
  }

  .unity-character-mitha {
    left: 50%;
    bottom: 0.95rem;
  }

  .unity-character-umer {
    width: 98px;
    height: 98px;
    right: 21%;
    bottom: 0.7rem;
  }

  .unity-character-malkoo {
    width: clamp(170px, 31%, 220px);
    right: 0;
  }

  .unity-character-badge {
    padding: 0.5rem 0.7rem;
  }

  .unity-character-badge-sajjad {
    left: 6%;
    bottom: 5.7rem;
  }

  .unity-character-badge-malkoo {
    right: 5%;
    bottom: 5.8rem;
  }
}

@media (max-width: 767.98px) {
  .unity-body .small-heading {
    font-size: 0.6rem;
    line-height: 1.1;
  }

  .unity-body .brand-logo-img {
    height: 25px;
  }

  /* Full-bleed poster: images fill hero, info overlays at bottom */
  .unity-hero-inner {
    position: relative;
    padding: 0;
    gap: 0;
  }

  .unity-event-badges {
    position: absolute;
    top: 0.85rem;
    left: 0;
    right: 0;
    z-index: 20;
    justify-content: center;
    padding: 0 0.75rem;
  }

  .unity-hero-split {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .unity-hero-cast-side {
    flex: 1 1 0;
    min-height: 0;
    max-height: none;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .unity-hero-info-side {
    flex: 0 0 auto;
    padding: 1.1rem 1.1rem 0.95rem;
    background: linear-gradient(
      0deg,
      rgba(255, 234, 212, 0.98) 0%,
      rgba(255, 241, 224, 0.92) 62%,
      rgba(255, 247, 235, 0) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    gap: 0.55rem;
    overflow: visible;
  }

  .unity-kicker {
    justify-content: center;
    font-size: 0.76rem;
  }

  .unity-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    margin-top: 0.15rem;
  }

  .unity-subtitle,
  .unity-stage-line,
  .unity-lead,
  .unity-countdown-wrap,
  .unity-hero-quick-info {
    display: none;
  }

  .unity-cta-row {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }

  .unity-cta-row .btn {
    flex: 1 1 0;
    max-width: 186px;
    padding: 0.72rem 0.7rem;
    font-size: 0.86rem;
  }

  .unity-showcase-shell {
    width: 100%;
    padding: 1rem;
    border-radius: 28px;
  }

  .unity-showcase-card {
    grid-template-columns: 1fr;
    padding: 1rem 1rem 0;
  }

  .unity-showcase-card-copy {
    padding-bottom: 0;
    text-align: left;
  }

  .unity-showcase-card img {
    justify-self: center;
    width: min(76%, 220px);
    max-height: 208px;
  }

  .unity-showcase-support {
    grid-template-columns: 1fr;
  }

  .unity-landing-cast-grid {
    grid-template-columns: 1fr;
  }

  .unity-landing-cast-card,
  .unity-landing-cast-card-feature {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .unity-landing-cast-media {
    min-height: 220px;
  }

  .unity-landing-cast-media img {
    max-width: 210px;
    max-height: 220px;
  }

  .unity-landing-cast-copy {
    text-align: left;
  }

  .unity-stage-shell {
    min-height: clamp(280px, 78vw, 420px);
    padding: 0.8rem 0.7rem 0.6rem;
  }

  .unity-character-placeholder {
    width: auto;
    min-height: 0;
    padding: 0.38rem 0.58rem 0.34rem;
    border-radius: 999px;
  }

  .unity-character-placeholder span {
    font-size: 0.36rem;
    letter-spacing: 0.06em;
  }

  .unity-character-placeholder strong {
    font-size: 0.52rem;
  }

  .unity-stage-banner {
    top: 0.7rem;
    font-size: 0.88rem;
  }

  .unity-countdown-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unity-countdown-state {
    text-align: center;
  }

  .unity-lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unity-exp-grid {
    grid-template-columns: 1fr;
  }

  .unity-character-stage {
    inset: 2.15rem 0.2rem 0.35rem 0.2rem;
    padding: 0;
  }

  .unity-character-sajjad {
    width: min(39%, 142px);
    left: -2%;
  }

  .unity-character-faisal {
    width: 72px;
    height: 72px;
    left: 24%;
    bottom: 0.55rem;
  }

  .unity-character-mitha {
    left: 50%;
    bottom: 0.72rem;
  }

  .unity-character-umer {
    width: 68px;
    height: 68px;
    right: 18%;
    bottom: 0.5rem;
  }

  .unity-character-malkoo {
    width: min(36%, 132px);
    right: -1%;
  }

  .unity-character-badge {
    padding: 0.38rem 0.52rem;
    border-radius: 12px;
  }

  .unity-character-badge span {
    font-size: 0.54rem;
  }

  .unity-character-badge strong {
    font-size: 0.8rem;
  }

  .unity-character-badge-sajjad {
    left: 4%;
    bottom: 4rem;
  }

  .unity-character-badge-malkoo {
    right: 3%;
    bottom: 4rem;
  }

  .guest-block-head,
  .duplicate-help {
    flex-direction: column;
    align-items: flex-start;
  }

  .unity-artist-headline .unity-artist-info h3 {
    font-size: 1.45rem;
  }
}

/* ============================================================
   SIMPLE HERO COLLAGE OVERRIDE
   ============================================================ */

/* Stretch grid so both sides fill the full hero height */
.unity-hero-split {
  align-items: stretch;
}

/* Desktop: anchor image to the bottom of the hero */
.unity-hero-cast-side {
  gap: 0;
  justify-content: flex-end;
  align-items: center;
}

/* Image fills height of its column, sits flush at the bottom */
.unity-cast-all-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Remove hero-inner bottom padding so cast image reaches mela-border */
.unity-hero-inner {
  padding-bottom: 0;
}

/* Restore breathing room for the info side */
.unity-hero-info-side {
  padding-bottom: 1.75rem;
}

/* Mobile: image fills cast area and hero connects seamlessly to next section */
@media (max-width: 767.98px) {
  .unity-cast-all-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  /* Hide decorative border strip — hero flows directly into lineup */
  .unity-mela-border {
    display: none;
  }
}

.unity-stage-banner,
.unity-cast-tabs,
.unity-cast-detail-panel {
  display: none !important;
}

.unity-stage-shell {
  max-width: none;
  min-height: 0 !important;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.unity-stage-shell::before,
.unity-stage-shell::after,
.unity-character-stage::before,
.unity-character-stage::after {
  content: none !important;
}

.unity-character-stage {
  position: static;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  overflow: visible;
}

.unity-character {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 229, 212, 0.78));
  box-shadow: 0 22px 42px rgba(111, 40, 27, 0.12);
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  pointer-events: none;
  cursor: default;
}

.unity-character.cast-dim,
.unity-character.cast-active {
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
}

.unity-character-stage .unity-character:nth-child(-n+3) {
  grid-column: span 2;
}

.unity-character-stage .unity-character:nth-child(4) {
  grid-column: 2 / span 2;
}

.unity-character-stage .unity-character:nth-child(5) {
  grid-column: 4 / span 2;
}

.unity-character-sajjad {
  object-position: center 10%;
}

.unity-character-faisal {
  object-position: center 18%;
}

.unity-character-mitha {
  object-position: center 12%;
}

.unity-character-umer {
  object-position: center 18%;
}

.unity-character-malkoo {
  object-position: center 10%;
}

@media (max-width: 1199.98px) {
  .unity-character-stage {
    gap: 0.85rem;
  }

  .unity-character {
    border-radius: 24px;
  }
}

@media (max-width: 991.98px) {
  .unity-character-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unity-character-stage .unity-character,
  .unity-character-stage .unity-character:nth-child(-n+3),
  .unity-character-stage .unity-character:nth-child(4),
  .unity-character-stage .unity-character:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 575.98px) {
  .unity-character-stage {
    gap: 0.7rem;
  }

  .unity-character {
    border-radius: 20px;
  }
}

/* ============================================================
   HERO FINAL CLEANUP
   ============================================================ */
@media (min-width: 992px) {
  .unity-hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
  }

  .unity-hero-inner {
    gap: 0.9rem;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .unity-hero-split {
    gap: 1.25rem;
    align-items: center;
  }

  .unity-hero-info-side {
    gap: 0.75rem;
    padding-top: 0;
  }

  .unity-kicker {
    padding: 0.42rem 0.88rem;
    font-size: 0.78rem;
  }

  .unity-title {
    margin-top: 2.25rem;
    font-size: clamp(3.5rem, 9.2vw, 6.2rem);
  }

  .unity-subtitle {
    margin-top: 2.25rem;
    font-size: clamp(1.25rem, 2.8vw, 2rem);
  }

  .unity-stage-line {
    margin-top: 0.12rem;
    font-size: clamp(0.95rem, 1.9vw, 1.28rem);
  }

  .unity-lead {
    margin-top: 0.72rem;
    max-width: 560px;
    font-size: 0.97rem;
    line-height: 1.48;
  }

  .unity-countdown-wrap {
    margin-top: 0.1rem;
  }

  .unity-countdown-board {
    gap: 0.55rem;
  }

  .unity-count-item {
    padding: 0.72rem 0.58rem;
  }

  .unity-count-item span {
    font-size: 1.85rem;
  }

  .unity-count-item small {
    font-size: 0.72rem;
  }

  .unity-countdown-state {
    margin-top: 0.38rem;
    font-size: 0.82rem;
  }

  .unity-cta-row {
    gap: 0.55rem;
  }

  .btn-unity-primary,
  .btn-unity-secondary,
  .btn-unity-ghost {
    padding: 0.74rem 1.02rem;
    font-size: 0.93rem;
  }

  .unity-hero-quick-info {
    gap: 0.5rem;
  }

  .unity-quick-info-item {
    padding: 0.55rem 0.72rem;
    border-radius: 16px;
    font-size: 0.8rem;
  }
}

.unity-stage-banner,
.unity-cast-tabs,
.unity-cast-detail-panel {
  display: none !important;
}

.unity-hero-cast-side {
  justify-content: flex-end;
  align-items: center;
}

.unity-stage-shell {
  max-width: none;
  min-height: 0 !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.unity-stage-shell::before,
.unity-stage-shell::after,
.unity-character-stage::before,
.unity-character-stage::after {
  content: none !important;
}

.unity-character-stage {
  --unity-collage-card-w: clamp(172px, 14.4vw, 222px);
  --unity-collage-card-h: clamp(344px, 48vh, 438px);
  position: relative !important;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  gap: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  transform: translate(-8vw, -7vh) scale(1.2);
  transform-origin: center center;
}

.unity-character-stage .unity-character {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: var(--unity-collage-card-w) !important;
  height: var(--unity-collage-card-h) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  filter: drop-shadow(0 14px 24px rgba(111, 40, 27, 0.12)) !important;
  opacity: 1 !important;
  pointer-events: none !important;
  cursor: default !important;
  margin-inline: -2.45rem !important;
  z-index: 2 !important;
  transform-origin: center bottom !important;
}

.unity-character-stage .unity-character-sajjad,
.unity-character-stage .unity-character-malkoo {
  z-index: 6 !important;
  margin-inline: -3.05rem !important;
}

.unity-character-stage .unity-character-sajjad {
  width: calc(var(--unity-collage-card-w) * 1.28) !important;
  height: calc(var(--unity-collage-card-h) * 1.28) !important;
  order: 3;
  transform: translateX(12px) !important;
  margin-right: -3.9rem !important;
}

.unity-character-stage .unity-character-malkoo {
  width: calc(var(--unity-collage-card-w) * 1.5) !important;
  height: calc(var(--unity-collage-card-h) * 1.5) !important;
  order: 4;
  transform: translateX(-12px) !important;
  margin-left: -4.8rem !important;
}

.unity-character-stage .unity-character-faisal,
.unity-character-stage .unity-character-mitha {
  width: calc(var(--unity-collage-card-w) * 0.96) !important;
  height: calc(var(--unity-collage-card-h) * 0.96) !important;
  z-index: 3 !important;
}

.unity-character-stage .unity-character-faisal {
  width: calc(var(--unity-collage-card-w) * 0.77) !important;
  height: calc(var(--unity-collage-card-h) * 0.77) !important;
  z-index: 2 !important;
}

.unity-character-stage .unity-character-umer {
  width: calc(var(--unity-collage-card-w) * 0.774) !important;
  height: calc(var(--unity-collage-card-h) * 0.774) !important;
  z-index: 0 !important;
  order: 1;
  transform: translateX(8px) !important;
}

.unity-character-stage .unity-character-faisal {
  order: 2;
  transform: translateX(30px) !important;
}

.unity-character-stage .unity-character-mitha {
  order: 5;
  transform: translateX(-32px) !important;
}

.unity-character-temp-label {
  position: absolute;
  transform: translateX(-50%);
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 245, 239, 0.96);
  border: 1px solid rgba(186, 87, 62, 0.26);
  box-shadow: 0 10px 18px rgba(129, 54, 34, 0.12);
  color: #8b3424;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 8;
}

.unity-character-stage .unity-character.cast-dim,
.unity-character-stage .unity-character.cast-active {
  transform: none !important;
  filter: drop-shadow(0 14px 24px rgba(111, 40, 27, 0.12)) !important;
  opacity: 1 !important;
}

.unity-character-stage .unity-character-umer.cast-dim,
.unity-character-stage .unity-character-umer.cast-active {
  transform: translateX(8px) !important;
}

.unity-character-stage .unity-character-faisal.cast-dim,
.unity-character-stage .unity-character-faisal.cast-active {
  transform: translateX(30px) !important;
}

.unity-character-stage .unity-character-sajjad.cast-dim,
.unity-character-stage .unity-character-sajjad.cast-active {
  transform: translateX(12px) !important;
}

.unity-character-stage .unity-character-malkoo.cast-dim,
.unity-character-stage .unity-character-malkoo.cast-active {
  transform: translateX(-12px) !important;
}

.unity-character-stage .unity-character-mitha.cast-dim,
.unity-character-stage .unity-character-mitha.cast-active {
  transform: translateX(-32px) !important;
}

/* Tablet: keep cinematic row, adjust character sizes */
@media (min-width: 768px) and (max-width: 991.98px) {
  .unity-character-stage {
    --unity-collage-card-w: clamp(90px, 9.5vw, 136px);
    --unity-collage-card-h: clamp(180px, 35vh, 290px);
    transform: translate(-3vw, -3.5vh) scale(1.1);
  }

  .unity-title {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    margin-top: 0.3rem;
  }

  .unity-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-top: 0.15rem;
  }

  .unity-stage-line {
    font-size: clamp(0.85rem, 1.6vw, 1.1rem);
    margin-top: 0.1rem;
  }

  .unity-lead {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .unity-hero-quick-info {
    grid-template-columns: 1fr 1fr;
  }
}

/* Phone: cinematic horizontal row (mirrors desktop) */
@media (max-width: 767.98px) {
  .unity-stage-shell {
    width: 100%;
    justify-content: center;
  }

  /* Cast side: stretch so stage shell can fill it */
  .unity-hero-cast-side {
    align-items: stretch;
    flex-direction: column;
    overflow: hidden;
  }

  /* Stage shell fills cast side, centers characters vertically (50% up) */
  .unity-stage-shell {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .unity-character-stage {
    --unity-collage-card-w: clamp(68px, 17vw, 106px);
    /* ~55dvh so cast area has room above/below for true vertical centering */
    --unity-collage-card-h: clamp(260px, 55dvh, 480px);
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    transform: none;
  }

  .unity-character-temp-label {
    font-size: 0.58rem;
    padding: 0.26rem 0.48rem;
  }

  .unity-character-stage .unity-character {
    margin-inline: -0.85rem !important;
  }

  .unity-character-stage .unity-character-sajjad,
  .unity-character-stage .unity-character-malkoo {
    margin-inline: -1.1rem !important;
  }

  .unity-character-stage .unity-character-sajjad {
    margin-right: -1.4rem !important;
  }

  .unity-character-stage .unity-character-malkoo {
    margin-left: -1.7rem !important;
  }
}

@media (max-width: 575.98px) {
  .unity-character-temp-label {
    font-size: 0.52rem;
    padding: 0.22rem 0.42rem;
  }

  .unity-character-stage {
    --unity-collage-card-w: clamp(56px, 14.5vw, 86px);
    --unity-collage-card-h: clamp(240px, 52dvh, 420px);
    transform: none;
  }

  .unity-character-stage .unity-character {
    margin-inline: -0.7rem !important;
  }

  .unity-character-stage .unity-character-sajjad,
  .unity-character-stage .unity-character-malkoo {
    margin-inline: -0.9rem !important;
  }

  .unity-character-stage .unity-character-sajjad {
    margin-right: -1.15rem !important;
  }

  .unity-character-stage .unity-character-malkoo {
    margin-left: -1.4rem !important;
  }
}

/* ============================================================
   CHARACTER TEMP LABELS — HIDE
   ============================================================ */
.unity-character-temp-label {
  display: none !important;
}

/* ============================================================
   CHARACTER ON-LOAD ENTRANCE ANIMATION
   CSS animations override !important declarations per the cascade spec
   ============================================================ */
/* Opacity-only fade — avoids conflict with per-character !important transforms */
@keyframes charReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.unity-character-stage .unity-character-umer {
  animation: charReveal 0.65s ease-out 0.05s both;
}
.unity-character-stage .unity-character-faisal {
  animation: charReveal 0.65s ease-out 0.16s both;
}
.unity-character-stage .unity-character-mitha {
  animation: charReveal 0.65s ease-out 0.24s both;
}
.unity-character-stage .unity-character-sajjad {
  animation: charReveal 0.75s ease-out 0.33s both;
}
.unity-character-stage .unity-character-malkoo {
  animation: charReveal 0.75s ease-out 0.44s both;
}

/* ============================================================
   HUMANIZED DESIGN IMPROVEMENTS
   ============================================================ */

/* --- Artist Cards: headliners get warmer golden treatment --- */
.unity-artist-headline {
  background: linear-gradient(155deg, rgba(255, 246, 220, 0.56), rgba(255, 228, 184, 0.32)) !important;
  border-color: rgba(255, 220, 160, 0.38) !important;
}

/* --- Lineup section: normalize card heights in 3-col grid --- */
@media (min-width: 992px) {
  .unity-lineup-grid {
    align-items: start;
  }
  /* Orphan 2 cards in last row of 3-col grid — center them */
  .unity-lineup-grid > .unity-artist-card:nth-child(4):nth-last-child(2) {
    grid-column: 1;
  }
  .unity-lineup-grid > .unity-artist-card:nth-child(5):last-child {
    grid-column: 3;
  }
}

/* --- Section heads: more editorial punch --- */
.unity-section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  letter-spacing: -0.015em;
  line-height: 1.06;
}

/* --- Experience cards: subtle accent variation --- */
.unity-exp-card:nth-child(2),
.unity-exp-card:nth-child(5) {
  background: linear-gradient(180deg, rgba(255, 248, 228, 0.42), rgba(255, 232, 194, 0.24));
}

/* --- Step cards: more grounded look --- */
.unity-step-card {
  border-left: 3px solid rgba(169, 43, 30, 0.2);
}

/* --- Quick info items: slightly more compact and warm --- */
.unity-quick-info-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 240, 220, 0.16));
}

/* --- Mela border: slightly taller for better separation --- */
.unity-mela-border {
  height: 48px;
}

/* --- Hero kicker: more contrast --- */
.unity-kicker {
  background: rgba(169, 43, 30, 0.11);
  border-color: rgba(169, 43, 30, 0.12);
}

/* --- Event badges now hidden (removed from HTML) but hide via CSS too --- */
.unity-event-badges {
  display: none !important;
}

/* --- Lineup 3-col: on medium screens use 2 col (tablet) --- */
@media (max-width: 991.98px) and (min-width: 768px) {
  .unity-lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   HERO IMAGE SLIDER
   ============================================================ */

/* Slider wraps the full cast side */
.unity-hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.unity-hero-slides {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.unity-hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

/* Dots: hidden by default, shown on mobile via overhaul block below */
.unity-hero-dots {
  display: none;
}

/* ============================================================
   MOBILE HERO OVERHAUL — full-bleed 100dvh layout
   This block is intentionally last to win the cascade cleanly.
   ============================================================ */
@media (max-width: 767.98px) {

  /* Navbar: fixed on mobile so it overlays the hero instead of pushing it down */
  .unity-body .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
  }

  /* Hero: JS sets inline height = window.innerHeight (full viewport).
     100dvh is the CSS fallback before JS runs. */
  .unity-hero {
    height: 100dvh !important;
    max-height: 100dvh !important;
  }

  /* Inner container: stretch edge-to-edge, no Bootstrap max-width */
  .unity-hero-inner {
    position: absolute !important;
    inset: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Split: fills hero entirely, anchors info to bottom */
  .unity-hero-split {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-end !important;
    z-index: 1 !important;
  }

  /* Cast side: absolute background layer behind info panel */
  .unity-hero-cast-side {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: center !important;
  }

  /* Image: full-bleed cover, focus on upper portion of photo */
  .unity-cast-all-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15% !important;
    display: block !important;
  }

  /* Info panel: sits at bottom, gradient fades up into the image */
  .unity-hero-info-side {
    flex: 0 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    padding: 4rem 1.25rem max(1.5rem, env(safe-area-inset-bottom, 1.5rem)) !important;
    background: linear-gradient(
      0deg,
      rgba(238, 196, 164, 1) 0%,
      rgba(244, 210, 178, 0.98) 36%,
      rgba(250, 221, 192, 0.91) 58%,
      rgba(253, 233, 208, 0.52) 78%,
      rgba(255, 242, 221, 0) 100%
    ) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.48rem !important;
    justify-content: flex-end !important;
    overflow: visible !important;
  }

  /* Kicker badge */
  .unity-kicker {
    justify-content: center;
    font-size: 0.74rem;
    padding: 0.4rem 0.85rem;
  }

  /* Title: slightly larger than before */
  .unity-title {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
    margin-top: 0.18rem;
  }

  /* Show subtitle (was hidden) */
  .unity-subtitle {
    display: block !important;
    font-size: clamp(1rem, 4.5vw, 1.45rem);
    margin-top: 0.08rem;
  }

  /* Show stage line (was hidden) */
  .unity-stage-line {
    display: block !important;
    font-size: clamp(0.8rem, 3.2vw, 1.05rem);
    margin-top: 0;
    margin-bottom: 0.08rem;
  }

  /* CTA buttons: side by side */
  .unity-cta-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    margin-top: 0.2rem;
  }

  .unity-cta-row .btn {
    flex: 1 1 0 !important;
    max-width: 186px !important;
    padding: 0.72rem 0.7rem !important;
    font-size: 0.86rem !important;
  }

  /* Hide mela border — hero flows straight into lineup */
  .unity-mela-border {
    display: none !important;
  }

  /* Slider dots */
  .unity-hero-dots {
    display: flex;
    position: absolute;
    bottom: 0.9rem;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 0.45rem;
    z-index: 5;
    pointer-events: none;
  }

  .unity-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
    transition: background 0.22s ease, width 0.22s ease;
    flex-shrink: 0;
  }

  .unity-hero-dot.is-active {
    background: rgba(255, 255, 255, 0.95);
    width: 22px;
    border-radius: 999px;
  }
}

/* ============================================================
   DESKTOP HERO IMAGE — enlarged + adjusted spacing
   Applies to tablet + desktop (≥768px). Mobile (≤767.98px) unchanged.
   ============================================================ */
@media (min-width: 768px) {
  /* Cast column gets all remaining space; info side is pinned to a
     fixed 400 px so the cast image is never clipped on either side. */
  .unity-hero-split {
    align-items: center !important;
    grid-template-columns: minmax(0, 1.15fr) 420px !important;
    gap: 0 !important;
  }

  /* Remove inner padding so the cast column reaches the hero edges. */
  .unity-hero-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Give the info side its own left padding now that the inner has none. */
  .unity-hero-info-side {
    padding-left: 1.25rem !important;
    padding-right: 1.5rem !important;
    padding-bottom: 0 !important;
  }

  /* Slider fills the full cast column height via flex-grow. */
  .unity-hero-slider {
    flex: 0 0 auto !important;
    width: 100%;
    overflow: visible !important;
  }

  .unity-hero-cast-side {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding-bottom: 1rem;
    overflow: visible !important;
  }

  /* Only the first slide (all-1.png) on desktop — JS already skips
     autoplay above 767 px; this hides the nodes so they can't show. */
  .unity-hero-slide:not(:first-child) {
    display: none !important;
  }

  /* Image fills the full cast column width — no overflow, no clipping.
     Height follows the native 1920×881 ratio, bottom flush. */
  .unity-cast-all-img {
    position: relative !important;
    width: auto !important;
    margin: 0;
    height: auto !important;
    max-height: 60vh !important;
    object-fit: contain !important;
    transform: none !important;
    -webkit-box-reflect: below -15px linear-gradient(transparent 60%, rgba(255, 255, 255, 0.15));
    filter: drop-shadow(0 20px 40px rgba(75, 34, 30, 0.12));
  }

  .unity-countdown-wrap {
    max-width: 520px !important;
    margin-top: 0 !important;
    z-index: 10;
  }

  .unity-count-item span {
    font-size: 2.8rem !important;
    font-weight: 900;
  }
}
