:root {
  --primary: #1a1a1a;
  --secondary: #4f46e5;
  --accent: #7c3aed;
  --bg: #fafafa;
  --card-bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --gradient-1: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --gradient-2: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
}

/* Dark Mode Variables */
body.dark-mode {
  --primary: #ffffff;
  --bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --border: #2a2a2a;
  --shadow: rgba(255, 255, 255, 0.05);
  --shadow-hover: rgba(255, 255, 255, 0.1);
}

body.dark-mode {
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-mode nav {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}

body.dark-mode .hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

body.dark-mode footer {
  background: #0a0a0a;
}


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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100000;
  background: var(--card-bg);
  color: var(--text);
  border: 2px solid var(--secondary);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 0, 110, 0.45);
  outline-offset: 3px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Navigation */
nav {
  background: var(--card-bg);
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  text-decoration: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
}

#language-selector {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: var(--card-bg);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

#language-selector:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

#language-selector:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dark-mode-toggle:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}


/* Contact Buttons */
.contact-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.contact-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  animation: fadeInUp 0.6s ease;
  position: relative;
}

.contact-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.contact-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.email-btn {
  background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
}

.email-btn:hover {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
}


/* Hero Section */
.hero {
  background: #ffffff;
  color: #1a1a1a;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.dark-mode .hero {
  background: #1a1a1a;
  color: #ffffff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(251, 86, 7, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

body.dark-mode .hero h1 {
  color: #ffffff;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  color: #333333;
}

body.dark-mode .hero p {
  color: #cccccc;
  opacity: 0.9;
}

/* Trust Counters */
.trust-counters {
  max-width: 1400px;
  margin: -40px auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.trust-counter {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.trust-counter:nth-child(1) { animation-delay: 0s; }
.trust-counter:nth-child(2) { animation-delay: 0.1s; }
.trust-counter:nth-child(3) { animation-delay: 0.2s; }
.trust-counter:nth-child(4) { animation-delay: 0.3s; }

.trust-counter:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

.counter-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.counter-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* How It Works */
.how-it-works {
  max-width: 1400px;
  margin: 6rem auto 4rem;
  padding: 0 2rem;
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works .section-header h2 {
  margin-bottom: 1rem;
}

.how-it-works .section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.step-card:nth-child(1) { animation-delay: 0s; }
.step-card:nth-child(2) { animation-delay: 0.1s; }
.step-card:nth-child(3) { animation-delay: 0.2s; }
.step-card:nth-child(4) { animation-delay: 0.3s; }

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.step-icon {
  font-size: 3rem;
  margin: 1.5rem 0 1rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.step-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Categories */
.categories {
  max-width: 1400px;
  margin: -60px auto 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.category-card:nth-child(2) { animation-delay: 0.1s; }
.category-card:nth-child(3) { animation-delay: 0.2s; }

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-hover);
}

.category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.category-card:hover .category-image {
  transform: scale(1.1);
}

.category-content {
  padding: 2rem;
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.category-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.category-count {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-1);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Events Section */
.events-section {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

/* Event Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.event-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.event-card:nth-child(2) { animation-delay: 0.1s; }
.event-card:nth-child(3) { animation-delay: 0.2s; }
.event-card:nth-child(4) { animation-delay: 0.3s; }

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.event-image-container {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--border);
  flex-shrink: 0;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.event-card:hover .event-image {
  transform: scale(1.08);
}

.event-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(255, 0, 110, 0.3);
}

.event-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.3;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.25rem 0;
}

.event-detail-icon {
  font-size: 1.1rem;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.price-info {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-view {
  padding: 1rem 2rem;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}

.btn-view:hover {
  background: var(--gradient-2);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

body.dark-mode .btn-view {
  background: var(--gradient-1);
  color: white;
}

/* Event Detail Page */
.event-detail-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: white;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.event-detail-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(251, 86, 7, 0.15) 0%, transparent 50%);
}

.event-detail-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.event-detail-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInLeft 0.8s ease;
}

.event-detail-info {
  animation: fadeInRight 0.8s ease;
}

.event-detail-info h1 {
  margin-bottom: 1.5rem;
}

.event-meta {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
}

.meta-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

/* Tickets Section */
.tickets-section {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.tickets-container {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px var(--shadow);
}

.tickets-header {
  margin-bottom: 2rem;
}

.tickets-header h2 {
  margin-bottom: 0.5rem;
}

.tickets-subtext {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.tickets-list {
  display: grid;
  gap: 1.5rem;
}

.ticket-item {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease;
  animation-fill-mode: both;
}

.ticket-item:nth-child(2) { animation-delay: 0.1s; }
.ticket-item:nth-child(3) { animation-delay: 0.2s; }
.ticket-item:nth-child(4) { animation-delay: 0.3s; }
.ticket-item:nth-child(5) { animation-delay: 0.4s; }

.ticket-item:hover {
  border-color: var(--secondary);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 0, 110, 0.15);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.ticket-section {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.ticket-price {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ticket-details {
  display: flex;
  gap: 2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.ticket-detail span {
  font-weight: 600;
  color: var(--text);
}

.btn-buy {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-buy:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 3rem 2rem 2rem;
  margin-top: 6rem;
}

body.dark-mode footer {
  background: #0a0a0a;
}

/* Trust Badges in Footer */
.trust-badges {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.trust-badge span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Trending Section */
.trending-section {
  max-width: 1400px;
  margin: -40px auto 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.trending-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.6s ease;
}

.trending-icon {
  font-size: 2.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.trending-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1400px;
  margin: 6rem auto 4rem;
  padding: 0 2rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease;
}

.testimonials-header h2 {
  margin-bottom: 1rem;
}

.testimonials-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 1.5rem);
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

.testimonial-stars {
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-event {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  border-color: var(--secondary);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 5px;
}

/* FAQ Section */
.faq-section {
  max-width: 1000px;
  margin: 6rem auto 4rem;
  padding: 0 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease;
}

.faq-header h2 {
  margin-bottom: 1rem;
}

.faq-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }
.faq-item:nth-child(6) { animation-delay: 0.5s; }
.faq-item:nth-child(7) { animation-delay: 0.6s; }
.faq-item:nth-child(8) { animation-delay: 0.7s; }

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Contact Form in Footer */
.footer-contact-form {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px var(--shadow);
  margin-bottom: 4rem;
  animation: fadeInUp 0.6s ease;
}

.footer-contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.footer-contact-form p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

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

.star-rating {
  display: flex;
  gap: 0.5rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.star {
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--border);
}

.star:hover,
.star.active {
  color: #ffc107;
  transform: scale(1.2);
}

.form-type-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.type-option {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.type-option:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.type-option.active {
  background: var(--gradient-1);
  color: white;
  border-color: transparent;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.submit-btn:active {
  transform: scale(0.98);
}



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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Checkout Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.modal-header {
  background: var(--gradient-1);
  color: white;
  padding: 2rem;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.order-summary {
  background: var(--bg);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary);
}

.order-summary h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
  border-bottom: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  padding-top: 1rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}

.form-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  border-color: var(--secondary);
  transform: scale(1.1);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-display {
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 40px;
  text-align: center;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.payment-option {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: var(--bg);
}

.payment-option:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.payment-option.selected {
  border-color: var(--secondary);
  background: rgba(255, 0, 110, 0.1);
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 12px;
}

.terms-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
}

.terms-checkbox label {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  cursor: pointer;
}

.terms-checkbox a {
  color: var(--secondary);
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

.submit-order-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.submit-order-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.submit-order-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.timer-warning {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.timer-warning strong {
  color: #ff6b00;
  font-size: 1.2rem;
}

.error-message {
  background: #ffebee;
  color: #c62828;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 4px solid #c62828;
}

.success-message {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-message h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.order-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-buttons {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .contact-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  #language-selector {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 4rem 1.5rem;
  }
  
  .category-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .event-detail-content {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .tickets-container {
    padding: 2rem 1.5rem;
  }
  
  .ticket-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.85rem;
  }
  
  .ticket-details {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
  
  .trending-grid {
    grid-template-columns: 1fr;
  }
  
  .dark-mode-toggle {
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .star-rating {
    font-size: 1.5rem;
  }
}

/* ===== Sold Out section ===== */
.soldout-section {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 1.5rem;
}
.soldout-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}
.soldout-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.soldout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.soldout-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    opacity: 0.7;
    filter: grayscale(40%);
    box-shadow: 0 2px 12px var(--shadow);
}
.soldout-img-wrap {
    position: relative;
    height: 140px;
    overflow: hidden;
}
.soldout-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.soldout-info {
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.soldout-badge {
    display: inline-block;
    background: #e53935;
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    width: fit-content;
}
.soldout-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}
.soldout-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== Reviews ===== */
.reviews-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}
.reviews-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.review-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.review-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    flex: 1;
}
.review-author {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* ===== View counter ===== */
.view-counter {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
}

/* ===== Trust strip ===== */
.trust-strip {
    background: var(--primary);
    color: var(--bg);
    padding: 0.55rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    flex-wrap: wrap;
    letter-spacing: 0.01em;
}
.trust-strip span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}
.trust-strip span::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.35;
    flex-shrink: 0;
}
body.dark-mode .trust-strip {
    background: #1e1e1e;
    color: #f0f0f0;
}

/* ===== Urgent badge (billets restants) ===== */
.urgent-badge {
    background: linear-gradient(135deg, #fb5607, #ff8c00) !important;
}

/* ===== Countdown tag ===== */
.countdown-tag {
    display: inline-block;
    margin-left: 0.45rem;
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--secondary);
    color: #fff;
    vertical-align: middle;
    white-space: nowrap;
}
.countdown-tag.soon {
    background: #fb5607;
}

/* ===== Back button ===== */
.back-btn-wrapper {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}
.back-btn:hover {
    color: var(--secondary);
}

/* ===== Search bar + Sort ===== */
.search-bar-wrapper {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.search-bar-wrapper .search-bar {
    flex: 1;
}
.sort-select {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    white-space: nowrap;
}
.sort-select:focus {
    border-color: var(--secondary);
}

.search-bar {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    background: var(--card-bg);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.search-bar:focus {
    border-color: var(--accent);
}

.search-bar::placeholder {
    color: var(--text-muted);
}

/* ===== Sticky CTA (mobile only) ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 0.85rem 1.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta.modal-open {
    display: none !important;
}

.sticky-cta-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sticky-cta-name {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
}

.sticky-cta-price {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

.sticky-cta-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sticky-cta-btn:hover { opacity: 0.85; }

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
    }
}

/* ===== group.html specific styles ===== */
.group-hero {
    position: relative;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.group-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.group-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.group-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 2.5rem;
    color: white;
}
.group-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 0.4rem 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.group-hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    flex-wrap: wrap;
}
.group-hero-meta span { display: flex; align-items: center; gap: 0.4rem; }

.group-subtitle {
    text-align: center;
    padding: 2.5rem 1rem 0.5rem;
    font-size: 1.1rem;
    color: var(--text-muted, #888);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sub-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sub-event-card {
    background: var(--card-bg, #fff);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid transparent;
}
.sub-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: #4f46e5;
}
.sub-event-card-body {
    padding: 1.4rem 1.5rem;
}
.sub-event-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.9rem 0;
    color: var(--text-primary, #1a1a2e);
    line-height: 1.3;
}
.sub-event-details {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
}
.sub-event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted, #666);
}
.sub-event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border, #f0f0f0);
}
.sub-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #4f46e5;
}
.sub-price-label {
    font-size: 0.75rem;
    color: var(--text-muted, #999);
    display: block;
}
.sub-btn-view {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Outfit', sans-serif;
}
.sub-btn-view:hover { opacity: 0.85; }

.sub-trending-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.ticket-count-badge {
    background: #f0f4ff;
    color: #3a86ff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

body.dark-mode .sub-event-card { background: #1e2035; }
body.dark-mode .sub-event-name { color: #f0f0f0; }
body.dark-mode .sub-event-footer { border-color: #2a2a4a; }
body.dark-mode .ticket-count-badge { background: #2a2a4a; color: #7eb8ff; }

@media (max-width: 600px) {
    .group-hero-content h1 { font-size: 1.6rem; }
    .sub-events-grid { grid-template-columns: 1fr; padding: 1rem; }
}

/* Loading state */
.loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  width: 100%;
  grid-column: 1 / -1;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ===== Verified line on cards ===== */
.verified-line {
    font-size: 0.72rem;
    color: #22c55e !important;
    font-weight: 600;
    padding: 0.3rem 0;
    letter-spacing: 0.01em;
}

/* ===== Floating request button ===== */
.float-request-btn {
    position: fixed;
    bottom: 2rem;
    left: 1.25rem;
    background: var(--gradient-1);
    color: #fff;
    border-radius: 50px;
    padding: 0.7rem 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(79,70,229,0.35);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 900;
    transition: transform 0.2s, opacity 0.2s;
}
.float-request-btn:hover { transform: translateY(-2px); opacity: 0.92; }

/* ===== Exit intent popup ===== */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.25s ease;
}
.exit-popup {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}
.exit-popup-icon { font-size: 3rem; margin-bottom: 1rem; }
.exit-popup h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; }
.exit-popup p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.exit-popup-btn {
    display: inline-block;
    background: var(--gradient-1);
    color: #fff;
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
    margin-bottom: 0.75rem;
}
.exit-popup-btn:hover { opacity: 0.88; }
.exit-popup-skip {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

/* ===== Share button on event page ===== */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 0.45rem 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.share-btn:hover { background: rgba(255,255,255,0.25); }

/* ===== Share toast ===== */
.share-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.2s ease;
}

/* ===== Scroll to top ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text);
    border: 1.5px solid var(--border);
    font-size: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, border-color 0.2s;
    z-index: 800;
    box-shadow: 0 2px 8px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { border-color: var(--secondary); }

/* ===== Cookie banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 9998;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.cookie-banner a { color: #a78bfa; }
.cookie-accept {
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

/* ===== Scroll animations ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Nav WhatsApp button ===== */
.nav-whatsapp {
    background: #25d366;
    color: #fff !important;
    border-radius: 20px;
    padding: 0.35rem 0.9rem !important;
    font-weight: 700 !important;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}
.nav-whatsapp:hover { opacity: 0.85; }

/* ===== Sold recently badge on cards ===== */
.sold-badge {
    font-size: 0.72rem;
    color: #16a34a;
    font-weight: 600;
    margin: 0.2rem 0 0.15rem;
    letter-spacing: 0.01em;
}

/* ===== Confirmation page ===== */
.confirmation-page {
    max-width: 480px;
    margin: 5rem auto;
    padding: 0 1.5rem;
    text-align: center;
}
.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.confirmation-page h1 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.confirmation-page p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}
.confirmation-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.confirmation-actions a {
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.confirmation-actions a:hover { opacity: 0.85; }
.btn-home {
    background: var(--gradient-1);
    color: #fff;
}
.btn-back-request {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    color: var(--text);
}

/* ===== Page Header Hero ===== */
.page-header {
    background: var(--gradient-1);
    color: #fff;
    text-align: center;
    padding: 3.5rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.page-header--concerts {
    background: linear-gradient(135deg, #2d1b69 0%, #8338ec 55%, #3a86ff 100%);
}

.page-header--sports {
    background: linear-gradient(135deg, #0a2342 0%, #1b6ca8 55%, #118ab2 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.1;
    color: #fff;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin: 0;
    font-weight: 400;
}

/* ===== Nav Dropdown ===== */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.65rem;
    opacity: 0.6;
    margin-left: 1px;
    pointer-events: none;
}

.nav-subdrop {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0.4rem;
    min-width: 190px;
    box-shadow: 0 8px 30px var(--shadow);
    border: 1px solid var(--border);
    z-index: 1001;
    flex-direction: column;
    gap: 2px;
}

.has-dropdown:hover .nav-subdrop,
.has-dropdown:focus-within .nav-subdrop {
    display: flex;
}

.nav-subdrop a {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-subdrop a:hover {
    background: var(--bg);
    color: var(--secondary);
}

.nav-subdrop a:first-child {
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.2rem;
    padding-bottom: 0.65rem;
}

@media (max-width: 768px) {
    .nav-subdrop { display: none !important; }
    .dropdown-arrow { display: none; }
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        box-shadow: 0 8px 24px var(--shadow);
        z-index: 999;
        border-top: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1rem;
    }

    #language-selector {
        width: 100%;
    }
}
