/* ==========================================================================
   The Monkey Events — Main Stylesheet
   ========================================================================== */

:root {
  --bg-dark: #0A0D18;
  --bg-dark-alt: #111625;
  --bg-card: rgba(20, 26, 45, 0.75);
  --bg-card-border: rgba(255, 255, 255, 0.12);
  --cyan: #00F2FE;
  --cyan-glow: rgba(0, 242, 254, 0.35);
  --pink: #FF0844;
  --pink-glow: rgba(255, 8, 68, 0.35);
  --purple: #9D4EDD;
  --purple-glow: rgba(157, 78, 221, 0.35);
  --amber: #FFB800;
  --blue: #2563EB;
  --red: #DC2626;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --transition-fast: 0.25s ease;
  --transition-normal: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Ambient Background & Particles */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.aura-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: floatOrb 18s infinite alternate ease-in-out;
}

.aura-orb-1 {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--cyan), transparent);
}

.aura-orb-2 {
  bottom: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--pink), transparent);
  animation-delay: -5s;
}

.aura-orb-3 {
  top: 40%;
  left: 30%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--purple), transparent);
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #38EF7D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #E0C3FC 0%, #8EC5FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #FF5E62 100%);
  color: #FFF;
  box-shadow: 0 10px 25px var(--pink-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px var(--pink-glow);
  filter: brightness(1.1);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--cyan) 0%, #00C6FF 100%);
  color: #0A0D18;
  box-shadow: 0 10px 25px var(--cyan-glow);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px var(--cyan-glow);
  filter: brightness(1.1);
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-facebook {
  background: #1877F2;
  color: #FFF;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
}

.btn-call {
  background: #10B981;
  color: #FFF;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-call:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--transition-normal);
  background: rgba(10, 13, 24, 0.5);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 13, 24, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4)) drop-shadow(0 0 15px rgba(255, 8, 68, 0.3));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.nav-brand:hover .brand-logo {
  transform: scale(1.08) rotate(4deg);
  filter: drop-shadow(0 0 16px rgba(0, 242, 254, 0.75)) drop-shadow(0 0 22px rgba(255, 8, 68, 0.6));
}

.brand-title {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--cyan);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 105;
}

.hamburger-box {
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 4px;
  position: absolute;
  transition: transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: rgba(17, 22, 37, 0.96);
  backdrop-filter: blur(20px);
  z-index: 104;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.mobile-nav-link:hover {
  color: var(--cyan);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.company-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.presents-title {
  font-size: 0.9rem;
  letter-spacing: 6px;
  color: var(--cyan);
  margin-bottom: 8px;
  font-weight: 600;
}

.sinhala-hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.event-subtitle {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.event-subtitle-badge {
  background: var(--pink);
  color: #FFF;
  font-size: 0.85rem;
  padding: 2px 10px;
  border-radius: 8px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Countdown */
.hero-countdown {
  display: flex;
  gap: 16px;
}

.timer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 16px;
  min-width: 84px;
  text-align: center;
}

.timer-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;

}

.timer-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Hero Visual Art */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-moon-wrapper {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-moon-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.4);
  position: relative;
  z-index: 2;
}

.hero-moon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 242, 254, 0.3);
  animation: spin 30s linear infinite;
}

.ring-1 { width: 340px; height: 340px; }
.ring-2 { width: 380px; height: 380px; border-color: rgba(255, 8, 68, 0.25); animation-duration: 45s; animation-direction: reverse; }
.ring-3 { width: 420px; height: 420px; border-color: rgba(157, 78, 221, 0.2); animation-duration: 60s; }

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

.hero-floating-badge {
  position: absolute;
  z-index: 15;
  background: rgba(17, 22, 37, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-floating-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 242, 254, 0.4);
}

.badge-top-left {
  top: -15px;
  left: -20px;
}

.badge-top-right {
  top: -15px;
  right: -20px;
}

.badge-bottom-right {
  bottom: -15px;
  right: -20px;
}

.badge-icon {
  font-size: 1.4rem;
}

.badge-text-primary {
  font-weight: 800;
  font-size: 0.85rem;
}

.badge-text-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
}

/* Featured Event Banner */
.event-banner-card {
  overflow: hidden;
}

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

.event-banner-info h3 {
  font-size: 2.8rem;
  font-weight: 900;
}

.event-banner-subtitle {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.event-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.detail-text-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
}

.detail-text-value {
  font-size: 1.05rem;
  font-weight: 800;
}

/* Venue Map Card — Modern Live Google Maps Integration */
.event-venue-map-preview {
  position: relative;
  border-radius: 24px;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.venue-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(0.9);
  z-index: 1;
}

.venue-card-overlay {
  position: relative;
  z-index: 2;
  background: rgba(10, 13, 24, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  margin: 16px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.venue-badge {
  background: rgba(0, 242, 254, 0.15);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.venue-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 2px;
}

.venue-address {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.venue-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-box span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.8px;
}

.meta-box strong {
  font-size: 0.92rem;
  color: var(--text-main);
}

.venue-directions-btn {
  width: 100%;
  padding: 12px;
  font-size: 0.88rem;
  border-radius: 14px;
}

/* Artists Grid — Modern Concert Card Styling */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}

.artist-card {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(17, 22, 37, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.artist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 25px 50px rgba(0, 242, 254, 0.2);
}

.artist-card-center {
  transform: translateY(-10px) scale(1.03);
  border: 1px solid rgba(255, 8, 68, 0.4);
  box-shadow: 0 25px 55px rgba(255, 8, 68, 0.25);
  background: linear-gradient(180deg, rgba(255, 8, 68, 0.08) 0%, rgba(17, 22, 37, 0.75) 100%);
}

.artist-card-center:hover {
  transform: translateY(-14px) scale(1.05);
  border-color: rgba(255, 8, 68, 0.6);
  box-shadow: 0 30px 65px rgba(255, 8, 68, 0.35);
}

.artist-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4 / 4.5;
  border-radius: 22px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, border-color 0.4s ease;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 72%, rgba(0,0,0,0.1) 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 72%, rgba(0,0,0,0.1) 100%);
}

.artist-card:hover .artist-img-wrapper {
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-img {
  transform: scale(1.06);
}

.artist-aura {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  z-index: 1;
  opacity: 0.6;
  filter: blur(25px);
  transition: opacity 0.4s ease;
}

.artist-card-center .artist-aura {
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  opacity: 0.8;
}

.artist-card:nth-child(3) .artist-aura {
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
}

.artist-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cyan);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.artist-card-center .artist-tag {
  background: linear-gradient(135deg, var(--pink) 0%, #FF5E62 100%);
  color: #FFF;
  border: none;
  box-shadow: 0 4px 15px var(--pink-glow);
}

.artist-name {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.artist-role {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.artist-soundbite-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-main);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.artist-soundbite-btn:hover {
  background: var(--cyan);
  color: #0A0D18;
  border-color: var(--cyan);
  box-shadow: 0 8px 20px var(--cyan-glow);
  transform: translateY(-2px);
}

.artist-soundbite-btn:hover {
  background: var(--cyan);
  color: #0A0D18;
  border-color: var(--cyan);
}

/* Tickets Grid — One Line 5-Column Desktop Layout */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 18px 40px rgba(0, 242, 254, 0.2);
}

.ticket-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.accent-vip { background: linear-gradient(90deg, #FFB800, #FF5E62); }
.accent-red { background: linear-gradient(90deg, #DC2626, #EF4444); }
.accent-blue { background: linear-gradient(90deg, #2563EB, #3B82F6); }
.accent-vip-balcony { background: linear-gradient(90deg, #9D4EDD, #C77DFF); }
.accent-balcony { background: linear-gradient(90deg, #10B981, #34D399); }

.ticket-zone {
  font-size: 1.18rem;
  font-weight: 900;
  margin-bottom: 10px;
  white-space: nowrap;
}

.ticket-price-box {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 16px;
}

.ticket-currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
}

.ticket-price {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.ticket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.ticket-btn {
  width: 100%;
  padding: 11px 8px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Ticket CTA Section */
.ticket-cta-section {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(16px);
}

.cta-heading {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.cta-subtext {
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.stat-box {
  padding: 20px;
  border-radius: 16px;
}

.stat-box h4 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 4px;
}

.stat-box p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Media Partner Card */
.media-partner-card {
  text-align: center;
  padding: 32px 24px;
}

.partner-logo-wrapper {
  width: 140px;
  height: 140px;
  margin: 22px auto;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 184, 0, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 184, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  background: #240509;
}

.media-partner-card:hover .partner-logo-wrapper {
  transform: scale(1.06);
  border-color: rgba(255, 184, 0, 0.7);
  box-shadow: 0 18px 40px rgba(255, 184, 0, 0.35);
}

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

.media-partner-card:hover .partner-logo-img {
  transform: scale(1.05);
}

.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

/* FAQ Section */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--cyan);
  transition: transform var(--transition-fast);
}

.faq-answer {
  display: none;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--text-main);
}

.contact-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
}

.contact-phone {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--bg-dark-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 32px;
  position: relative;
  z-index: 1;
}

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

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 280px;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-icon:hover {
  background: var(--cyan);
  color: #0A0D18;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--cyan);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 13, 24, 0.85);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-dark-alt);
  border: 1px solid var(--bg-card-border);
  border-radius: 28px;
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-main);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.seating-layout-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.stage-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  border-radius: 4px;
  margin-bottom: 6px;
}

.stage-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.seating-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.zone-block {
  padding: 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.zone-block.selected {
  border-color: var(--cyan);
  background: rgba(0, 242, 254, 0.15);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-select option {
  background: var(--bg-dark-alt);
  color: var(--text-main);
}

/* Comprehensive Mobile & Tablet Responsive Engine */
@media (max-width: 1024px) {
  .hero-grid, .event-banner-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hero-visual {
    margin-top: 30px;
  }

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

  .artist-card-center {
    transform: none;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-menu, .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .tickets-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .ticket-cta-section {
    padding: 28px 18px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .company-title {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .event-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Mobile Hero Countdown Timer */
  .hero-countdown {
    gap: 8px;
    justify-content: space-between;
  }

  .timer-box {
    padding: 10px 8px;
    min-width: 60px;
    flex: 1;
  }

  .timer-num {
    font-size: 1.35rem;
  }

  .timer-label {
    font-size: 0.58rem;
  }

  /* Mobile Hero Concert Stage Visual */
  .hero-stage-wrapper {
    max-width: 100%;
    min-height: 390px;
    padding-bottom: 10px;
  }

  .hero-stage-moon {
    width: 250px;
    height: 250px;
    top: 30px;
  }

  .hero-stage-aura {
    width: 320px;
    height: 320px;
  }

  .hero-stage-artists {
    gap: 8px;
    margin-top: 15px;
  }

  .artist-left .stage-portrait-wrapper, .artist-right .stage-portrait-wrapper {
    width: 95px;
    height: 128px;
  }

  .headliner-wrapper {
    width: 135px;
    height: 180px;
  }

  .headliner-crown-badge {
    font-size: 0.62rem;
    padding: 3px 10px;
  }

  .stage-artist-name {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .headliner-name {
    font-size: 0.75rem;
    padding: 3px 10px;
  }

  .badge-top-left {
    top: -24px;
    left: -4px;
    padding: 6px 10px;
  }

  .badge-top-right {
    top: -24px;
    right: -4px;
    padding: 6px 10px;
  }

  .badge-icon {
    font-size: 1.1rem;
  }

  .badge-text-primary {
    font-size: 0.7rem;
  }

  .badge-text-sub {
    font-size: 0.6rem;
  }

  .hero-stage-highlights {
    gap: 8px;
    margin-top: 20px;
  }

  .highlight-chip {
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  /* Mobile Venue Map & Cards */
  .event-venue-map-preview {
    min-height: 340px;
  }

  .venue-card-overlay {
    margin: 10px;
    padding: 16px;
  }

  .venue-name {
    font-size: 1.35rem;
  }

  /* Mobile Call Modal */
  .call-modal-card {
    padding: 28px 16px 24px;
    border-radius: 22px;
  }

  .call-modal-title {
    font-size: 1.4rem;
  }

  .call-contact-card {
    padding: 14px 12px;
  }

  .call-name {
    font-size: 1.05rem;
  }

  .call-number {
    font-size: 0.9rem;
  }
}

/* Golden Sinhala Title Logo & Hero Moon Center */
.hero-title-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(255, 184, 0, 0.45));
  margin: 10px 0 16px;
  transition: transform 0.4s ease;
}

.hero-title-img:hover {
  transform: scale(1.03);
}

.hero-moon-center {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 27, 75, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 2px solid rgba(255, 184, 0, 0.35);
  box-shadow: 0 0 60px rgba(255, 184, 0, 0.3), inset 0 0 30px rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.hero-moon-center-img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.6));
  transition: transform 0.4s ease;
}

.hero-moon-center:hover .hero-moon-center-img {
  transform: scale(1.06);
}

/* Hero Visual Concert Stage Showcase */
.hero-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
  padding-bottom: 20px;
}

.hero-stage-moon {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 27, 75, 0.9) 0%, rgba(15, 23, 42, 0.98) 70%, rgba(10, 13, 24, 0) 100%);
  border: 1.5px solid rgba(255, 184, 0, 0.35);
  box-shadow: 0 0 70px rgba(255, 184, 0, 0.3), inset 0 0 40px rgba(0, 242, 254, 0.2);
  pointer-events: none;
  z-index: 1;
}

.hero-stage-aura {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 8, 68, 0.2) 0%, rgba(0, 242, 254, 0.12) 50%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.hero-stage-title-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  text-align: center;
}

.hero-stage-title-img {
  max-width: 380px;
  width: 88%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(255, 184, 0, 0.55));
  transition: transform 0.4s ease;
}

.hero-stage-title-img:hover {
  transform: scale(1.03);
}

.hero-stage-artists {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 20px;
}

.hero-stage-artist {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stage-artist:hover {
  transform: translateY(-8px);
  z-index: 12 !important;
}

/* Portrait Mask & Transparent Background Blending */
.stage-portrait-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.artist-left .stage-portrait-wrapper, .artist-right .stage-portrait-wrapper {
  width: 125px;
  height: 165px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.artist-left .stage-portrait-wrapper {
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow: 0 12px 30px rgba(0, 242, 254, 0.2);
}

.artist-right .stage-portrait-wrapper {
  border-color: rgba(157, 78, 221, 0.45);
  box-shadow: 0 12px 30px rgba(157, 78, 221, 0.2);
}

.stage-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.hero-stage-artist:hover .stage-portrait {
  transform: scale(1.08);
}

.stage-portrait-blend {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(0deg, rgba(10, 13, 24, 0.95) 0%, transparent 100%);
  pointer-events: none;
}

.stage-artist-name {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 8px;
  letter-spacing: 0.5px;
  background: rgba(10, 13, 24, 0.88);
  backdrop-filter: blur(8px);
  padding: 3px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* MAIN KEY HEADLINER: SHASHIKA NISANSALA */
.artist-main-key {
  z-index: 8;
  transform: translateY(-16px);
}

.artist-main-key:hover {
  transform: translateY(-24px) scale(1.04);
}

.headliner-crown-badge {
  background: linear-gradient(135deg, #FFB800 0%, #FF5E62 100%);
  color: #0A0D18;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  box-shadow: 0 4px 18px rgba(255, 184, 0, 0.55);
  white-space: nowrap;
}

.headliner-wrapper {
  width: 175px;
  height: 235px;
  border: 3px solid var(--pink);
  border-radius: 28px;
  box-shadow: 0 0 35px var(--pink-glow), 0 20px 50px rgba(0, 0, 0, 0.75);
}

.headliner-portrait {
  filter: brightness(1.05) contrast(1.05);
}

.headliner-aura-ring {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 8, 68, 0.4) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(18px);
}

.headliner-name {
  font-size: 0.88rem;
  font-weight: 900;
  color: #FFF;
  background: linear-gradient(135deg, var(--pink) 0%, #FF5E62 100%);
  border: none;
  box-shadow: 0 4px 18px rgba(255, 8, 68, 0.5);
  padding: 4px 14px;
}

/* Hero Stage Highlights Bar */
.hero-stage-highlights {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  z-index: 6;
  flex-wrap: wrap;
  justify-content: center;
}

.highlight-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 13, 24, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 254, 0.35);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-main);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.highlight-chip.chip-gold {
  border-color: rgba(255, 184, 0, 0.45);
  color: var(--amber);
}

.chip-icon {
  font-size: 0.9rem;
}

.headliner-label {
  background: var(--pink);
  color: #FFF;
  border: none;
}

/* Official Live Music Band Showcase Card */
.band-showcase-card {
  max-width: 960px;
  margin: 54px auto 0;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 184, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 184, 0, 0.15);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.band-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 0 25px 60px rgba(0, 242, 254, 0.2);
}

.band-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.5s ease;
}

.band-showcase-card:hover .band-img {
  transform: scale(1.03);
}

.band-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(10, 13, 24, 0.9) 0%, transparent 100%);
  pointer-events: none;
}

.band-badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 13, 24, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: var(--amber);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.band-info-content {
  margin-top: 20px;
  text-align: center;
}

.band-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.band-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Presenter & Live Band Extra Grid */
.performers-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 54px auto 0;
}

.extra-card {
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.extra-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 25px 55px rgba(0, 242, 254, 0.2);
}

.extra-img-wrapper {
  position: relative;
  width: 100%;
  height: 290px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 78%, rgba(0,0,0,0.15) 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 78%, rgba(0,0,0,0.15) 100%);
}

.extra-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.extra-card:hover .extra-img {
  transform: scale(1.05);
}

.extra-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(0deg, rgba(10, 13, 24, 0.88) 0%, transparent 100%);
  pointer-events: none;
}

.extra-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 13, 24, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: var(--cyan);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.extra-badge-tag.badge-gold {
  border-color: rgba(255, 184, 0, 0.4);
  color: var(--amber);
}

.extra-info-content {
  margin-top: 18px;
  text-align: center;
}

.extra-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 4px;
}

.extra-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .performers-extra-grid {
    grid-template-columns: 1fr;
  }
}

/* Phone Hotline Call Modal Styling */
.call-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 13, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.call-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.call-modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 38px 28px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(22, 28, 48, 0.96) 0%, rgba(13, 17, 30, 0.98) 100%);
  border: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75), 0 0 35px rgba(0, 242, 254, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.call-modal-overlay.active .call-modal-card {
  transform: scale(1) translateY(0);
}

.call-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.call-modal-close:hover {
  background: rgba(255, 8, 68, 0.25);
  border-color: var(--pink);
  color: #FFF;
  transform: rotate(90deg);
}

.call-modal-badge {
  display: inline-block;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.call-modal-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 6px;
}

.call-modal-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 26px;
}

.call-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.call-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.call-contact-card:hover {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 242, 254, 0.25);
}

.call-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.call-contact-info {
  text-align: left;
  flex: 1;
  margin-left: 16px;
}

.call-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.call-number {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.8px;
}

.call-action-badge {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFF;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: 14px;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-contact-card:hover .call-action-badge {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}
