/* ============================================
   UCW - Universal Championship Wrestling
   Production Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --ucw-navy: #080982;
  --ucw-dark: #050565;
  --ucw-black: #0a0a1a;
  --ucw-gold: #d4a843;
  --ucw-gold-light: #f0c85a;
  --ucw-red: #c41e3a;
  --ucw-red-glow: #ff2d55;
  --ucw-white: #ffffff;
  --ucw-gray: #b6b6cd;
  --ucw-light-gray: #e8e8f0;
  --ucw-bg-dark: #06061a;
  --ucw-bg-card: rgba(255,255,255,0.04);
  --ucw-border: rgba(255,255,255,0.08);
  --font-heading: 'League Spartan', 'Impact', sans-serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ucw-bg-dark);
  color: var(--ucw-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ucw-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--ucw-gold-light);
}

ul { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 0.5em;
  background: linear-gradient(135deg, var(--ucw-gold), var(--ucw-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--ucw-gray);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--ucw-red);
  color: var(--ucw-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ucw-red-glow);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  color: var(--ucw-white);
}

.btn-secondary {
  background: transparent;
  color: var(--ucw-gold);
  border: 2px solid var(--ucw-gold);
}
.btn-secondary:hover {
  background: var(--ucw-gold);
  color: var(--ucw-black);
}

.btn-gold {
  background: linear-gradient(135deg, var(--ucw-gold), var(--ucw-gold-light));
  color: var(--ucw-black);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.5);
  color: var(--ucw-black);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 6, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ucw-border);
  height: var(--header-height);
  transition: background var(--transition), top 0.15s ease-out;
}

.site-header.scrolled {
  background: rgba(6, 6, 26, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.3));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ucw-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--ucw-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ucw-gold);
  background: rgba(212, 168, 67, 0.08);
}

.nav-links .btn-primary {
  color: var(--ucw-white);
  padding: 10px 20px;
  font-size: 0.8rem;
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-links .btn-primary:hover {
  color: var(--ucw-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ucw-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--ucw-bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right var(--transition);
    border-left: 1px solid var(--ucw-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    width: 100%;
    padding: 14px 16px;
  }

  .nav-links .btn-primary {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
  }
  .nav-overlay.active {
    display: block;
  }
}

/* --- Landing Section --- */
.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.landing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.landing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}

.landing-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,6,26,0.15) 0%,
    rgba(8,9,130,0.1) 40%,
    rgba(6,6,26,0.85) 85%,
    rgba(6,6,26,1) 100%
  );
}

/* --- Wrestler Layers --- */
.landing-wrestler {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform, opacity;
  transition: none;
  display: none; /* hidden by default; JS shows the active layout */
}

.landing-wrestler img {
  display: block;
  height: auto;
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0,0,0,0.7));
}

/* Left/Right layout */
.landing-wrestler--left {
  left: -2%;
  animation: slideInLeft 1s ease-out 0.3s both;
}

.landing-wrestler--left img {
  max-width: 42vw;
}

.landing-wrestler--right {
  right: -2%;
  animation: slideInRight 1s ease-out 0.5s both;
}

.landing-wrestler--right img {
  max-width: 42vw;
}

/* Center layout */
.landing-wrestler--center {
  left: 50%;
  transform: translateX(-50%);
  animation: fadeScaleIn 1s ease-out 0.3s both;
}

.landing-wrestler--center img {
  max-width: none;
  max-height: none;
  width: 60vw;
}

/* --- Landing Center Content --- */
.landing-content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform, opacity;
}

.landing-title-logo {
  width: clamp(280px, 50vw, 560px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 30px rgba(212,168,67,0.3))
          drop-shadow(0 0 60px rgba(196,30,58,0.2));
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.landing .tagline {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: var(--ucw-gray);
  margin-bottom: 32px;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  animation: fadeInUp 0.8s ease-out 0.6s both;
  max-width: 480px;
}

/* --- Landing Countdown Timer --- */
.landing-countdown {
  margin: 10px 0 20px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hc-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-weight: 600;
}

.hc-units {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.hc-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hc-flip {
  position: relative;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 58px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Subtle top shine like a belt plate */
.hc-flip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
  border-radius: 8px 8px 0 0;
}

/* Bottom gold accent line */
.hc-flip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ucw-gold), transparent);
  opacity: 0.5;
}

.hc-num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--ucw-white);
  line-height: 1;
  display: block;
  text-align: center;
  text-shadow: 0 0 20px rgba(212,168,67,0.3);
}

.hc-tag {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ucw-gold);
  margin-top: 6px;
  font-weight: 700;
}

.hc-sep {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--ucw-gold);
  line-height: 1;
  padding-top: 10px;
  opacity: 0.6;
  animation: pulseColon 1s ease-in-out infinite;
}

@keyframes pulseColon {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.15; }
}

/* Number tick animation */
.hc-flip.tick .hc-num {
  animation: tickNum 0.4s ease-out;
}

@keyframes tickNum {
  0% {
    transform: translateY(-30%) scaleY(0.6);
    opacity: 0.3;
  }
  50% {
    transform: translateY(4%);
  }
  100% {
    transform: translateY(0) scaleY(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .landing-countdown {
    margin: 6px 0 16px;
  }
  .hc-flip {
    padding: 8px 10px;
    min-width: 48px;
    border-radius: 6px;
  }
  .hc-num {
    font-size: 1.4rem;
  }
  .hc-sep {
    font-size: 1.2rem;
    padding-top: 8px;
  }
  .hc-tag {
    font-size: 0.5rem;
  }
  .hc-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }
}

.landing-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Scroll indicator */
.landing-decor {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}

.landing-decor .scroll-text {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ucw-gray);
}

.landing-decor .scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--ucw-gold);
  border-bottom: 2px solid var(--ucw-gold);
  transform: rotate(45deg);
}

/* --- Wrestler slide-in keyframes --- */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

/* --- Landing responsive adjustments --- */

/* Tablet */
@media (max-width: 1024px) {
  .landing-wrestler--left img,
  .landing-wrestler--right img {
    max-width: 38vw;
    max-height: 70vh;
  }
  .landing-title-logo {
    width: clamp(240px, 45vw, 440px);
  }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
  .landing-wrestler--left {
    left: -8%;
  }
  .landing-wrestler--right {
    right: -8%;
  }
  .landing-wrestler--left img,
  .landing-wrestler--right img {
    max-width: 44vw;
    max-height: 55vh;
  }
  .landing-title-logo {
    width: clamp(260px, 70vw, 420px);
  }
  .landing .tagline {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .landing {
    min-height: 100svh;
  }
  .landing-wrestler--left {
    left: -6%;
  }
  .landing-wrestler--right {
    right: -6%;
  }
  .landing-wrestler--left img,
  .landing-wrestler--right img {
    max-width: 50vw;
    max-height: 50vh;
  }
  .landing-wrestler--center img {
    width: 110vw !important;
  }
  .landing-content {
    margin-top: -60px;
  }
  .landing-title-logo {
    width: clamp(300px, 96vw, 440px);
    margin-bottom: 0;
  }
  .landing-buttons {
    margin-top: -4px;
  }
  .landing-buttons .btn {
    width: auto;
    padding: 12px 24px;
    font-size: 0.8rem;
  }
  .landing-decor {
    bottom: 16px;
  }
}

/* --- Next Event Banner --- */
.next-event {
  background: linear-gradient(135deg, var(--ucw-navy), var(--ucw-dark));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.next-event::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.1), transparent 70%);
  pointer-events: none;
}

.event-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.event-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.event-info .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ucw-gray);
  font-size: 0.95rem;
}

.event-meta-item svg {
  width: 18px;
  height: 18px;
  fill: var(--ucw-gold);
  flex-shrink: 0;
}

.event-tag {
  display: inline-block;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid var(--ucw-red);
  color: var(--ucw-red-glow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

@media (max-width: 700px) {
  .event-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .event-info .event-meta {
    justify-content: center;
  }
  .event-banner .btn {
    width: 100%;
  }
}

/* --- Events Grid Section --- */
/* --- Events Section (compact list) --- */
.events-section {
  padding: 60px 0 40px;
  background: var(--ucw-bg-dark);
}

.events-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 12px;
  overflow: hidden;
}

.event-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--ucw-bg-card);
  border-left: 3px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.event-row:hover {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--ucw-gold);
}

.event-row-date {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--ucw-red), var(--ucw-red-glow));
  border-radius: 6px;
  padding: 6px 4px;
}

.er-month {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
}

.er-day {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

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

.event-row-info h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ucw-white);
  line-height: 1.3;
}

.event-row-info p {
  color: var(--ucw-gray);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.er-time {
  color: var(--ucw-gold);
  font-weight: 600;
}

.er-time::before {
  content: '\00b7';
  margin: 0 6px;
  color: var(--ucw-gray);
}

.event-row .btn {
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.7rem;
}

/* --- Featured Events (tickets page) --- */
.featured-events {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 32px;
}

.featured-event {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--ucw-bg-card);
  border: 1px solid var(--ucw-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.featured-event:hover {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.featured-event-poster {
  position: relative;
  overflow: hidden;
  background: var(--ucw-black);
}

.featured-event-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-event:hover .featured-event-poster img {
  transform: scale(1.05);
}

.featured-event-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--ucw-red), var(--ucw-red-glow));
  color: var(--ucw-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 4px;
}

.featured-event-info {
  display: flex;
  gap: 20px;
  padding: 28px 28px;
  align-items: flex-start;
}

.featured-event-date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--ucw-red), var(--ucw-red-glow));
  border-radius: 8px;
  padding: 10px 8px;
}

.fed-month {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  color: rgba(255,255,255,0.85);
}

.fed-day {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ucw-white);
}

.featured-event-details {
  flex: 1;
}

.featured-event-details h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ucw-white);
  margin-bottom: 10px;
}

.featured-venue,
.featured-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ucw-gray);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.featured-venue svg,
.featured-time svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.featured-time {
  color: var(--ucw-gold);
}

.featured-desc {
  color: var(--ucw-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 14px 0 20px;
}

.featured-event-details .btn {
  padding: 12px 28px;
}

/* --- Upcoming Events Grid (tickets page) --- */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.upcoming-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--ucw-bg-card);
  border: 1px solid var(--ucw-border);
  border-radius: 10px;
  transition: all var(--transition);
}

.upcoming-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  background: rgba(255,255,255,0.06);
}

.upcoming-date {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 8px;
  align-self: flex-start;
}

.upcoming-info {
  flex: 1;
}

.upcoming-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ucw-white);
  margin-bottom: 6px;
}

.upcoming-venue {
  color: var(--ucw-gray);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.upcoming-time {
  color: var(--ucw-gold);
  font-size: 0.85rem;
  font-weight: 500;
}

.upcoming-desc {
  color: var(--ucw-gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .featured-event {
    grid-template-columns: 1fr;
  }

  .featured-event-poster {
    max-height: 300px;
  }

  .featured-event-info {
    padding: 20px;
  }

  .upcoming-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .featured-event-info {
    flex-direction: column;
    gap: 12px;
  }

  .featured-event-date {
    width: auto;
    flex-direction: row;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 16px;
  }

  .featured-event-details h3 {
    font-size: 1.2rem;
  }
}

.events-footer {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .event-row {
    padding: 12px 14px;
    gap: 12px;
  }
  .event-row-info h3 {
    font-size: 0.82rem;
  }
  .event-row-info p {
    font-size: 0.68rem;
  }
  .event-row .btn {
    display: none;
  }
  .event-row-date {
    width: 42px;
  }
}

/* --- About Preview Section --- */
.about-preview {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--ucw-bg-dark), rgba(8,9,130,0.15), var(--ucw-bg-dark));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212,168,67,0.2);
  border-radius: 12px;
  pointer-events: none;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-text h2 .text-gold {
  background: linear-gradient(135deg, var(--ucw-gold), var(--ucw-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--ucw-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .btn {
  margin-top: 12px;
}

.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ucw-border);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--ucw-gold);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--ucw-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-row {
    justify-content: center;
  }
}

/* --- Highlights / Features (kept for inner pages) --- */
.highlights {
  padding: 80px 0;
  background: var(--ucw-bg-dark);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.highlight-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--ucw-bg-card);
  border: 1px solid var(--ucw-border);
  border-radius: 12px;
  transition: all var(--transition);
}

.highlight-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196,30,58,0.15), rgba(212,168,67,0.15));
  border-radius: 16px;
}

.highlight-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--ucw-gold);
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.highlight-card p {
  color: var(--ucw-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Why Strip (compact) --- */
.why-strip {
  padding: 24px 0;
  background: linear-gradient(135deg, rgba(8,9,130,0.15), rgba(6,6,26,0.9));
  border-top: 1px solid var(--ucw-border);
  border-bottom: 1px solid var(--ucw-border);
}

.why-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.why-item svg {
  width: 28px;
  height: 28px;
  fill: var(--ucw-gold);
  flex-shrink: 0;
}

.why-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ucw-white);
  line-height: 1.2;
}

.why-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--ucw-gray);
  line-height: 1.3;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .why-strip-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .why-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .why-strip {
    padding: 20px 0;
  }
  .why-item {
    flex: 1 1 100%;
  }
}

/* --- Video Highlights — Featured Player + Filmstrip --- */
.video-section {
  padding: 80px 0 60px;
  background: var(--ucw-bg-dark);
}

.video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.video-header .section-title {
  text-align: left;
  margin-bottom: 0;
}

.video-see-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ucw-gold);
  white-space: nowrap;
  transition: all var(--transition);
}

.video-see-all:hover {
  color: var(--ucw-gold-light);
  gap: 8px;
}

/* Featured player stage */
.vp {
  margin-top: 28px;
}

.vp-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #0c0c2a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ucw-border);
}

.vp-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.vp-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.vp-embed:hover .vp-poster {
  transform: scale(1.03);
  filter: brightness(0.7);
}

.vp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
  z-index: 2;
}

.vp-play-btn svg {
  width: 72px;
  height: 52px;
}

.vp-embed:hover .vp-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 6px 30px rgba(196,30,58,0.5));
}

/* Hide play button once a video is playing */
.vp-embed.playing .vp-poster,
.vp-embed.playing .vp-play-btn {
  display: none;
}

.vp-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* Now Playing info bar */
.vp-now-playing {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, rgba(8,9,130,0.35), rgba(6,6,26,0.9));
  border-top: 1px solid var(--ucw-border);
}

.vp-np-badge {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ucw-bg-dark);
  background: var(--ucw-gold);
  padding: 4px 12px;
  border-radius: 3px;
}

.vp-now-playing h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ucw-white);
  line-height: 1.3;
}

.vp-now-playing p {
  color: var(--ucw-gray);
  font-size: 0.78rem;
  line-height: 1.4;
  display: none;
}

@media (min-width: 769px) {
  .vp-now-playing p {
    display: block;
  }
}

/* --- Filmstrip Carousel --- */
.filmstrip-wrap {
  position: relative;
  margin-top: 18px;
}

.filmstrip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
  padding: 6px 0 12px;
}

.filmstrip::-webkit-scrollbar {
  display: none;                  /* Chrome / Safari */
}

/* Arrow buttons */
.filmstrip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(6,6,26,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--ucw-border);
  color: var(--ucw-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}

.filmstrip-wrap:hover .filmstrip-arrow {
  opacity: 1;
  pointer-events: auto;
}

.filmstrip-arrow:hover {
  background: var(--ucw-red);
  border-color: var(--ucw-red);
  transform: translateY(-50%) scale(1.1);
}

.filmstrip-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.filmstrip-arrow--left {
  left: -6px;
}

.filmstrip-arrow--right {
  right: -6px;
}

/* Individual filmstrip card */
.fs-card {
  flex: 0 0 180px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: var(--ucw-bg-card);
  position: relative;
}

.fs-card:hover {
  border-color: rgba(212,168,67,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.fs-card.active {
  border-color: var(--ucw-gold);
  box-shadow: 0 0 16px rgba(212,168,67,0.3);
}

.fs-card.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--ucw-gold);
  border-radius: 2px 2px 0 0;
}

/* Thumbnail */
.fs-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.fs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fs-card:hover .fs-thumb img {
  transform: scale(1.08);
}

/* Hover play overlay */
.fs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fs-card:hover .fs-overlay {
  opacity: 1;
}

.fs-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--ucw-white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Badge on thumbnail */
.fs-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0,0,0,0.78);
  color: var(--ucw-gold);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 2px 7px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* Label under thumbnail */
.fs-label {
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ucw-light-gray);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Video section responsive --- */
@media (max-width: 768px) {
  .video-header {
    flex-wrap: wrap;
    gap: 8px;
  }
  .video-header .section-title {
    text-align: center;
    width: 100%;
  }
  .video-see-all {
    width: 100%;
    justify-content: center;
  }
  .vp-now-playing {
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 8px;
  }
  .vp-play-btn svg {
    width: 56px;
    height: 40px;
  }
  .fs-card {
    flex: 0 0 150px;
  }
  .filmstrip-arrow {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 480px) {
  .vp-play-btn svg {
    width: 48px;
    height: 34px;
  }
  .fs-card {
    flex: 0 0 130px;
  }
  .vp-now-playing h3 {
    font-size: 0.8rem;
  }
}

/* --- Partners Section --- */
.partners {
  padding: 60px 0;
  background: rgba(8,9,130,0.08);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.partner-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ucw-border);
  border-radius: 10px;
  text-align: center;
  transition: all var(--transition);
}

.partner-tile img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-tile:hover img {
  transform: scale(1.06);
}

.partner-tile span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ucw-gray);
  line-height: 1.3;
  transition: color var(--transition);
}

.partner-tile:hover {
  border-color: var(--ucw-gold);
  background: rgba(212,168,67,0.06);
  transform: translateY(-3px);
}

.partner-tile:hover span {
  color: var(--ucw-gold);
}

/* --- Signup Strip --- */
.signup-strip {
  padding: 40px 0;
  background: linear-gradient(90deg, rgba(196,30,58,0.15), rgba(212,168,67,0.12));
  border-top: 1px solid rgba(212,168,67,0.15);
  border-bottom: 1px solid rgba(212,168,67,0.15);
}

.signup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.signup-text h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ucw-white);
}

.signup-text p {
  color: var(--ucw-gray);
  font-size: 0.82rem;
  margin-top: 4px;
  line-height: 1.4;
}

.btn-signup {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .signup-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* --- Nav Signup Link --- */
.nav-signup {
  color: var(--ucw-gold) !important;
  font-weight: 700;
  position: relative;
}

.nav-signup::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ucw-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-signup:hover::after {
  transform: scaleX(1);
}

/* --- CTA / Newsletter Section --- */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--ucw-navy), var(--ucw-dark));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,30,58,0.15), transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.1), transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--ucw-gray);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
  padding: 60px 0 24px;
  background: var(--ucw-black);
  border-top: 1px solid var(--ucw-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.3));
}

.footer-brand p {
  color: var(--ucw-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ucw-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--ucw-gold);
  border-color: var(--ucw-gold);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: var(--ucw-gray);
  transition: fill var(--transition);
}

.social-links a:hover svg {
  fill: var(--ucw-black);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--ucw-white);
}

.footer-col a {
  display: block;
  color: var(--ucw-gray);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--ucw-gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--ucw-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--ucw-gray);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--ucw-gray);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--ucw-navy), var(--ucw-bg-dark));
  position: relative;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.text-gold {
  background: linear-gradient(135deg, var(--ucw-gold), var(--ucw-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: var(--ucw-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Generic Section --- */
.content-section {
  padding: 80px 0;
}

/* --- Team Grid (About page) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: var(--ucw-bg-card);
  border: 1px solid var(--ucw-border);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ucw-navy), var(--ucw-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--ucw-gold);
  border: 2px solid var(--ucw-gold);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--ucw-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Join / Recruitment Section --- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.role-card {
  background: var(--ucw-bg-card);
  border: 1px solid var(--ucw-border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}

.role-card:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
}

.role-card svg {
  width: 40px;
  height: 40px;
  fill: var(--ucw-gold);
  margin-bottom: 16px;
}

.role-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.role-card p {
  color: var(--ucw-gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- Partnership Pitch --- */
.partnership-pitch {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partnership-pitch .lead-text {
  font-size: 1.15rem;
  color: var(--ucw-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.partnership-pitch .lead-text strong {
  color: var(--ucw-gold);
}

.partnership-offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: left;
}

.offering-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--ucw-bg-card);
  border: 1px solid var(--ucw-border);
  border-radius: 10px;
  transition: all var(--transition);
}

.offering-item:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-2px);
}

.offering-item svg {
  flex-shrink: 0;
  width: 28px;
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  fill: var(--ucw-gold);
}

.offering-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ucw-white);
  margin-bottom: 4px;
}

.offering-item p {
  font-size: 0.85rem;
  color: var(--ucw-gray);
  line-height: 1.5;
}

.pitch-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- PDF Viewer --- */
.pdf-viewer {
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
  background: var(--ucw-bg-card);
  border: 1px solid var(--ucw-border);
  border-radius: 12px;
  overflow: hidden;
}

.pdf-viewer canvas {
  display: block;
  width: 100%;
  height: auto;
}

.pdf-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 20px;
  color: var(--ucw-gray);
  font-size: 0.95rem;
}

.pdf-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--ucw-border);
  border-top-color: var(--ucw-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pdf-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--ucw-border);
}

.pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ucw-border);
  background: var(--ucw-bg-card);
  color: var(--ucw-white);
  cursor: pointer;
  transition: all var(--transition);
}

.pdf-btn:hover {
  background: var(--ucw-gold);
  color: var(--ucw-black);
  border-color: var(--ucw-gold);
}

.pdf-page-info {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--ucw-white);
}

/* --- Form Styling --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ucw-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ucw-bg-card);
  border: 1px solid var(--ucw-border);
  border-radius: 8px;
  color: var(--ucw-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ucw-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Ticket Promo Strip --- */
.promo-strip {
  background: linear-gradient(90deg, var(--ucw-red), var(--ucw-red-glow), var(--ucw-red));
  padding: 10px 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.promo-strip a {
  color: var(--ucw-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-strip a:hover {
  color: var(--ucw-gold-light);
}

/* --- Responsive Fine-Tuning --- */
@media (max-width: 480px) {
  .landing h1 {
    letter-spacing: 1px;
  }
  .landing-buttons .btn {
    width: 100%;
  }
  .stat-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(6, 6, 26, 0.97);
  border-top: 1px solid var(--ucw-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-inner p {
  color: var(--ucw-gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-inner p a {
  color: var(--ucw-gold);
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ucw-gray);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--ucw-border);
  background: var(--ucw-bg-card);
  color: var(--ucw-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ucw-gold);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-start;
}
