@font-face {
  font-family: 'Bulevar';
  src: url('assets/fonts/Bulevar-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeue';
  src: url('assets/fonts/HelveticaNeueLTStd Bd.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

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

:root {
  --bg-dark: #120907;       /* Deep Sunset Terracotta */
  --bg-card: rgba(38, 19, 15, 0.55); /* Sun-soaked warm glass */
  --bg-card-hover: rgba(56, 28, 22, 0.75);
  --primary: #ff6a00;       /* Solar Flare Orange */
  --secondary: #ff3300;     /* Crimson Horizon */
  --accent: #ffd000;        /* Golden Sunbeam */
  --glow-primary: rgba(255, 106, 0, 0.5);
  --glow-secondary: rgba(255, 51, 0, 0.5);
  --glow-accent: rgba(255, 208, 0, 0.4);
  --text-main: #fffaf9;     /* Warm Sand White */
  --text-muted: #e6d3d0;    /* Muted Sunset Dust */
  --font-heading: 'Bulevar', sans-serif;
  --font-body: 'HelveticaNeue', sans-serif;
  --border-color: rgba(255, 106, 0, 0.25);
  --border-hover: rgba(255, 208, 0, 0.5);
  --transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(255, 51, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255, 208, 0, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #1c0c08 0%, #120907 100%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 106, 0, 0.35);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  box-shadow: 0 0 10px var(--glow-primary);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.0em;
  font-weight: normal;
  line-height: 1.1;
}

h4, h5, h6 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Layout Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

/* --- Glassmorphism & Sunset Glows --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: var(--transition);
  box-shadow: 0 8px 32px 0 rgba(28, 11, 8, 0.45);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px 0 rgba(255, 106, 0, 0.25);
}

.glass-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 1;
}

/* Neon Text & Box Shadows */
.neon-glow-orange {
  text-shadow: 
    0 0 5px rgba(255, 106, 0, 0.4),
    0 0 15px var(--glow-primary),
    0 0 30px var(--glow-primary);
}

.neon-glow-crimson {
  text-shadow: 
    0 0 5px rgba(255, 51, 0, 0.4),
    0 0 15px var(--glow-secondary),
    0 0 30px var(--glow-secondary);
}

.neon-border-orange {
  box-shadow: 0 0 15px var(--glow-primary);
  border-color: var(--primary);
}

.neon-border-crimson {
  box-shadow: 0 0 15px var(--glow-secondary);
  border-color: var(--secondary);
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(18, 9, 7, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 106, 0, 0.2);
  transition: var(--transition);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 5px var(--glow-primary));
  transition: transform 0.8s ease;
  flex-shrink: 0;
}

.logo-link:hover .logo-icon {
  transform: rotate(180deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-txt-wah {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.logo-txt-sub {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* Header Action Buttons Group */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile-First Overlay Navigation Drawer */
nav {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(18, 9, 7, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 1.5rem;
  transition: var(--transition);
  z-index: 99;
  overflow-y: auto;
}

nav.active {
  left: 0;
}

nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

nav ul li {
  width: 100%;
  text-align: center;
}

/* Nav Link Sizing and Styling */
nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  display: block;
  padding: 0.5rem 0;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--accent);
  text-shadow: 0 0 10px var(--glow-accent);
}

/* Isolation of Button CTA classes */
.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-main) !important; /* Force button text color */
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: bold !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.5);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
  text-shadow: none !important;
}

.nav-cta:hover {
  box-shadow: 0 0 25px rgba(255, 51, 0, 0.7);
  transform: translateY(-2px);
}

/* Responsive visibility triggers for CTAs */
.desktop-only-cta {
  display: none; /* Hidden by default on mobile */
}

.mobile-only-cta {
  display: block;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.2);
  transition: var(--transition);
}

.menu-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  text-align: center;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
  filter: saturate(1.4) brightness(0.65) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 9, 7, 0.4) 0%, var(--bg-dark) 95%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
}

/* Central Neon Sun Face Logo */
.hero-sun-container {
  width: 180px;
  height: 180px;
  margin-bottom: 1.5rem;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.hero-sun-container:hover {
  transform: scale(1.05);
}

.hero-sun-svg {
  width: 100%;
  height: 100%;
  animation: slow-rotate 40s linear infinite;
  filter: drop-shadow(0 0 15px var(--glow-primary));
}

.neon-path-orange {
  stroke: var(--primary);
  stroke-width: 2.5;
  fill: none;
  filter: drop-shadow(0 0 3px var(--glow-primary));
}

.neon-path-crimson {
  stroke: var(--secondary);
  stroke-width: 2.5;
  fill: none;
  filter: drop-shadow(0 0 3px var(--glow-secondary));
}

.neon-path-accent {
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
  filter: drop-shadow(0 0 3px var(--glow-accent));
}

.sun-face-eyes {
  fill: var(--accent);
  filter: drop-shadow(0 0 5px var(--glow-accent));
}

.hero-dates {
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dates i {
  color: var(--secondary);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(28, 11, 8, 0.6);
}

.hero-title span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-main);
  border: none;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(255, 51, 0, 0.8);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 208, 0, 0.4);
  transform: translateY(-2px);
}

/* --- Scroll Down Indicator --- */
.scroll-down {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  font-size: 1rem;
  animation: bounce 2s infinite;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 3.4rem;
  margin-bottom: 0.75rem;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Experience Section --- */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.exp-card {
  padding: 0;
}

.exp-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.exp-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(18, 9, 7, 0.9);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--accent);
}

.exp-info {
  padding: 1.5rem;
}

.exp-card-title {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.exp-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Ticket Tiers & Deposit Options --- */
.ticket-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.toggle-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-label.active {
  color: var(--accent);
  text-shadow: 0 0 10px var(--glow-accent);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 9, 7, 0.6);
  border: 1px solid var(--border-color);
  transition: .4s;
  border-radius: 28px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 0 8px var(--glow-primary);
}

input:checked + .slider {
  border-color: var(--border-hover);
}

input:checked + .slider:before {
  transform: translateX(22px);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.tickets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ticket-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ticket-tier-name {
  font-size: 2.0rem;
  margin-bottom: 0.5rem;
}

.ticket-price-box {
  margin: 1rem 0;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-currency {
  font-size: 1.3rem;
  vertical-align: super;
  color: var(--accent);
}

.ticket-price {
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--font-heading);
}

.ticket-price-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.ticket-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.ticket-features li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticket-features i {
  color: var(--primary);
}

.ticket-card .btn {
  width: 100%;
}

.ticket-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.2);
}

.ticket-card.featured::after {
  content: 'BEST SELLER';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
}

.deposit-infobox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.deposit-scheme-svg {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--glow-primary));
}

.deposit-info-details h3 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.deposit-info-details p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.deposit-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deposit-step {
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.15);
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  text-align: left;
}

.deposit-step-num {
  font-weight: bold;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

/* --- DNB Holiday Planner --- */
.planner-card {
  padding: 1.5rem;
}

.planner-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.planner-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.planner-step-group {
  border-bottom: 1px solid rgba(255, 106, 0, 0.15);
  padding-bottom: 1rem;
}

.planner-step-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
}

.planner-step-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.planner-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.planner-opt-btn {
  background: rgba(18, 9, 7, 0.6);
  border: 1px solid var(--border-color);
  padding: 0.85rem;
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.planner-opt-btn:hover {
  border-color: var(--border-hover);
}

.planner-opt-btn.active {
  background: rgba(255, 106, 0, 0.12);
  border-color: var(--primary);
  color: var(--text-main);
}

.opt-name {
  font-weight: bold;
  display: block;
  font-size: 0.9rem;
}

.opt-price {
  font-size: 0.8rem;
  color: var(--accent);
}

.planner-summary-panel {
  background: rgba(18, 9, 7, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-title {
  font-size: 1.75rem;
  border-bottom: 1px solid rgba(255, 106, 0, 0.15);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-total {
  border-top: 1px solid rgba(255, 106, 0, 0.15);
  padding-top: 0.85rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.total-label {
  font-weight: bold;
  font-family: var(--font-body);
}

.total-val {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
  font-family: var(--font-heading);
}

.planner-summary-panel .btn {
  width: 100%;
}

/* --- Travel Guide --- */
.travel-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.travel-guide-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.travel-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.travel-icon-wrapper {
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.travel-item-title {
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
}

.travel-item-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.travel-links {
  display: flex;
  gap: 1rem;
}

.travel-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.travel-map-wrapper {
  height: 300px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.travel-map-static {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, rgba(18,9,7,0.9) 90%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.map-card-label {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--accent);
}

.map-locations {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.map-location-tag {
  background: rgba(18, 9, 7, 0.9);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.map-location-tag i {
  color: var(--accent);
}

/* --- Lineup Teaser --- */
.lineup-teaser-container {
  max-width: 700px;
  margin: 0 auto;
}

.lineup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lineup-artist-card {
  background: rgba(38, 19, 15, 0.45);
  border: 1px solid rgba(255, 106, 0, 0.15);
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: rgba(255, 250, 250, 0.12);
  text-shadow: 0 0 10px rgba(255, 106, 0, 0.1);
  filter: blur(4px);
  user-select: none;
  transition: all 0.6s ease;
  position: relative;
  text-align: center;
}

.lineup-artist-card::before {
  content: 'REDACTED';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  background: rgba(18, 9, 7, 0.9);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--accent);
  opacity: 0.8;
}

.lineup-badge-box {
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.2);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
}

.lineup-badge-title {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.lineup-badge-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

/* --- App Section --- */
.app-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 106, 0, 0.08) 50%, var(--bg-dark) 100%);
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.app-mockup-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.app-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  z-index: 1;
  opacity: 0.35;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 4s infinite alternate;
}

.phone-mockup {
  width: 250px;
  height: 500px;
  background: #180d0b;
  border: 8px solid #2d1815;
  border-radius: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 20px rgba(255, 106, 0, 0.15);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.phone-screen {
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.phone-content {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.phone-logo {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 0 6px var(--glow-primary));
  margin-bottom: 0.75rem;
}

.phone-event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem;
  width: 100%;
  margin-bottom: 0.75rem;
}

.phone-event-title {
  font-size: 0.85rem;
  color: var(--accent);
}

.phone-event-status {
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 0.2/rem;
  font-weight: bold;
}

.phone-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: var(--text-main);
  padding: 0.65rem;
  border-radius: 20px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 8px var(--glow-primary);
}

.phone-chat-preview {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.4rem;
  font-size: 0.6rem;
  text-align: left;
  width: 100%;
  margin-top: 0.75rem;
}

.phone-chat-user {
  font-weight: bold;
  color: var(--accent);
}

.app-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  gap: 0.75rem;
}

.benefit-icon {
  color: var(--accent);
  font-size: 1.3rem;
}

.benefit-title {
  font-size: 1.75rem;
  margin-bottom: 0.2rem;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.app-download-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.download-badge {
  background: #0d0605;
  border: 1px solid var(--border-color);
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
}

.download-badge:hover {
  border-color: var(--accent);
  background: #180907;
}

.download-badge i {
  font-size: 1.5rem;
}

.badge-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.badge-text strong {
  font-size: 0.85rem;
}

.app-sms-form {
  max-width: 100%;
}

.sms-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0.2rem;
  overflow: hidden;
  transition: var(--transition);
}

.sms-input-group:focus-within {
  border-color: var(--accent);
}

.sms-input-group input {
  background: transparent;
  border: none;
  padding: 0.6rem 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  flex-grow: 1;
  width: 50%;
}

.sms-input-group button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: var(--text-main);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

.app-sms-status {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
}

/* --- FAQ Accordion --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 10px;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-trigger i {
  color: var(--accent);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger {
  color: var(--accent);
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Footer --- */
footer {
  background: #0d0605;
  border-top: 1px solid rgba(255, 106, 0, 0.2);
  padding: 3rem 0 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-info-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-color: transparent;
  box-shadow: 0 0 10px var(--glow-primary);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

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

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

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

.footer-app-box p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

/* --- Floating Music Widget --- */
.music-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.music-widget:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.15);
}

.music-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  width: 20px;
}

.visualizer-bar {
  background: var(--accent);
  width: 2.5px;
  height: 4px;
  border-radius: 3px;
  animation: bounce-bar 0.8s ease infinite alternate;
  animation-play-state: paused;
}

.music-widget.playing .visualizer-bar {
  animation-play-state: running;
}

.visualizer-bar:nth-child(1) { animation-delay: 0.1s; height: 8px; }
.visualizer-bar:nth-child(2) { animation-delay: 0.3s; height: 12px; }
.visualizer-bar:nth-child(3) { animation-delay: 0.2s; height: 6px; }
.visualizer-bar:nth-child(4) { animation-delay: 0.4s; height: 14px; }

.music-widget-title {
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.music-control-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
}

/* --- Animations --- */
@keyframes slow-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

@keyframes bounce-bar {
  from { height: 3px; }
  to { height: 14px; }
}

@keyframes pulse-glow {
  0% { opacity: 0.25; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes neon-flicker-slow {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 15px var(--glow-primary));
  }
  20%, 24%, 55% {
    opacity: 0.35;
    filter: none;
  }
}

@keyframes neon-flicker-fast {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--glow-secondary));
  }
  50% {
    opacity: 0.65;
    filter: none;
  }
}

/* ==========================================================================
   PROGRESSIVE ENHANCEMENT: min-width Media Queries (Mobile-First Philosophy)
   ========================================================================== */

/* --- Tablet / Large Mobile (min-width: 768px) --- */
@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-title span {
    font-size: 1.8rem;
  }
  .hero-sun-container {
    width: 220px;
    height: 220px;
  }
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
  .hero-ctas .btn {
    width: auto;
  }
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .planner-options {
    grid-template-columns: repeat(3, 1fr);
  }
  .app-download-badges {
    flex-direction: row;
  }
  .app-sms-form {
    max-width: 450px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-app-box {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* --- Small Desktops & High-Res Viewports (min-width: 1024px) --- */
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
  
  /* Desktop navigation header overrides */
  .menu-btn {
    display: none;
  }
  
  nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    border-bottom: none;
    backdrop-filter: none;
    overflow-y: visible;
  }
  
  .logo-link {
    margin-right: 1.5rem;
    flex-shrink: 0;
  }

  nav ul {
    flex-direction: row;
    gap: 0.95rem;
    align-items: center;
  }

  nav ul li {
    width: auto;
  }

  nav ul li a {
    font-size: 0.8rem; /* Scaled down slightly to fit all links comfortably alongside wide logo */
    padding: 0;
    position: relative;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--glow-accent);
  }

  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 100%;
  }

  /* Show CTA action on desktop */
  .desktop-only-cta {
    display: inline-block;
  }

  .mobile-only-cta {
    display: none;
  }

  .section-title {
    font-size: 4.0rem;
  }
  .hero-title {
    font-size: 4.8rem;
  }
  .hero-title span {
    font-size: 2.2rem;
  }
  .hero-sun-container {
    width: 250px;
    height: 250px;
  }
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tickets-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .deposit-infobox {
    flex-direction: row;
    text-align: left;
    gap: 2.5rem;
  }
  .deposit-steps {
    flex-direction: row;
  }
  .deposit-step {
    flex: 1;
  }
  .planner-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
  .travel-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .travel-map-wrapper {
    height: 450px;
  }
  .lineup-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .app-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
  }
  .footer-app-box {
    grid-column: span 1;
  }
}

/* Alpha Channel Video Support (RLE Codec / VP9 Transparency) */
.hero-sun-video, 
.hero-bg-media {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
}

/* --- Highlights Section --- */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 350px;
}

.highlight-card img,
.highlight-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.highlight-card:hover img,
.highlight-card:hover video {
  transform: scale(1.08);
}

.highlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 9, 7, 0.95) 10%, rgba(18, 9, 7, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 2;
}

.highlight-stat {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.highlight-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.highlight-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Artist Sets Section --- */
.sets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .sets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.set-card {
  display: flex;
  flex-direction: column;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: #000;
  margin-bottom: 1rem;
}

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

.set-title {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.set-meta {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: bold;
}

/* CTA Pulse Button Animation */
.btn-pulse {
  animation: pulse-button 2.5s infinite;
}

@keyframes pulse-button {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 106, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

/* --- Redesigned Alternating Experience Rows --- */
.alt-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 4rem;
}

.showcase-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .showcase-row {
    flex-direction: row;
    gap: 4rem;
  }
  .showcase-row:nth-child(even) {
    flex-direction: row-reverse;
  }
  .showcase-media, .showcase-info {
    width: 50%;
  }
}

.showcase-media {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 106, 0, 0.15);
  aspect-ratio: 16/10;
}

.showcase-media img,
.showcase-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-media:hover img,
.showcase-media:hover video {
  transform: scale(1.05);
}

.showcase-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(18, 9, 7, 0.85);
  border: 1px solid var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.showcase-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.showcase-number {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 106, 0, 0.4);
  margin-bottom: 0.5rem;
}

.showcase-info:hover .showcase-number {
  -webkit-text-stroke: 1px var(--accent);
  text-shadow: 0 0 15px rgba(255, 208, 0, 0.3);
  transition: all 0.3s ease;
}

.showcase-title {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.showcase-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Showcase Media Carousels --- */
.showcase-media.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slides .slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 9, 7, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  opacity: 0;
}

.showcase-media.carousel:hover .carousel-nav-btn {
  opacity: 1;
}

.carousel-nav-btn:hover {
  background: var(--accent);
  border-color: transparent;
  color: #120907;
  box-shadow: 0 0 10px var(--glow-accent);
}

.carousel-nav-btn.prev-btn {
  left: 1rem;
}

.carousel-nav-btn.next-btn {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-dots .dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--glow-accent);
  width: 18px;
  border-radius: 4px;
}

/* --- High-Impact Sales Conversion Panel --- */
.conversion-panel {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  background: linear-gradient(135deg, rgba(38, 19, 15, 0.6) 0%, rgba(18, 9, 7, 0.95) 100%);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255, 106, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.conversion-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
}

.ticket-alert-banner {
  border: 1px solid rgba(255, 51, 0, 0.3) !important;
  border-left: 4px solid var(--secondary) !important;
  background: rgba(255, 51, 0, 0.08) !important;
  box-shadow: 0 5px 20px rgba(255, 51, 0, 0.15);
  animation: pulse-alert-glow 3s infinite alternate;
}

@keyframes pulse-alert-glow {
  0% {
    box-shadow: 0 5px 15px rgba(255, 51, 0, 0.1);
    border-color: rgba(255, 51, 0, 0.2);
  }
  100% {
    box-shadow: 0 5px 25px rgba(255, 51, 0, 0.3);
    border-color: rgba(255, 51, 0, 0.5);
  }
}

.progress-bar-fill {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 30px 30px;
  animation: progress-bar-stripes 1.5s linear infinite;
  box-shadow: 0 0 15px var(--glow-primary);
}

@keyframes progress-bar-stripes {
  0% { background-position: 0 0; }
  100% { background-position: 30px 0; }
}

.live-ravers-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: rgba(255, 208, 0, 0.07);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 208, 0, 0.15);
  margin-bottom: 1.25rem;
}

.live-indicator-dot {
  width: 8px;
  height: 8px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff66;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

@keyframes blinker {
  50% { opacity: 0.5; }
}

/* --- Mobile Viewport Adjustments for WAH App Mockup --- */
@media (max-width: 767px) {
  .phone-mockup {
    width: 160px;
    height: 320px;
    border-radius: 20px;
    border-width: 4px;
  }
  .phone-screen {
    padding: 0.75rem;
  }
  .phone-logo {
    width: 65px !important;
    height: 65px !important;
  }
  .phone-event-card {
    padding: 0.4rem;
    margin-bottom: 0.4rem;
  }
  .phone-event-title {
    font-size: 0.65rem;
  }
  .phone-event-status {
    font-size: 0.5rem;
    margin-top: 1px;
  }
  .phone-button {
    padding: 0.35rem;
    font-size: 0.6rem;
    border-radius: 12px;
  }
  .phone-chat-preview {
    margin-top: 0.35rem;
    padding: 0.2rem;
    font-size: 0.45rem;
  }
  .app-layout {
    gap: 1.5rem;
  }
  .app-mockup-wrapper {
    margin-top: -1rem;
  }
}
