/* Airbnb-style Seat Price Tooltip */
#seatPriceTooltip {
  position: fixed;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transform: translateY(0) scale(0.95);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.08);
  visibility: hidden;
  min-width: 140px;
}

#seatPriceTooltip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#seatPriceTooltip:not(.visible) {
  pointer-events: none !important;
  display: none;
}

#seatPriceTooltip::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

/* Arrow colors for different statuses */
#seatPriceTooltip.status-available::after {
  border-top-color: #dcfce7;
}

#seatPriceTooltip.status-selected::after {
  border-top-color: #fed7aa;
}

#seatPriceTooltip.status-reserved::after {
  border-top-color: #fef3c7;
}

#seatPriceTooltip.status-sold::after {
  border-top-color: #fee2e2;
}

#seatPriceTooltip.status-subscribed::after {
  border-top-color: #ede9fe;
}

#seatPriceTooltip.status-blocked::after {
  border-top-color: #f3f4f6;
}

#seatPriceTooltip.status-complimentary::after {
  border-top-color: #f0fdf4;
}

#seatPriceTooltip.tooltip-below::after {
  top: -8px;
  bottom: auto;
  border-top: none;
  border-bottom: 8px solid white;
}

#seatPriceTooltip.tooltip-below.status-available::after {
  border-bottom-color: #dcfce7;
}

#seatPriceTooltip.tooltip-below.status-selected::after {
  border-bottom-color: #fed7aa;
}

#seatPriceTooltip.tooltip-below.status-reserved::after {
  border-bottom-color: #fef3c7;
}

#seatPriceTooltip.tooltip-below.status-sold::after {
  border-bottom-color: #fee2e2;
}

#seatPriceTooltip.tooltip-below.status-subscribed::after {
  border-bottom-color: #ede9fe;
}

#seatPriceTooltip.tooltip-below.status-blocked::after {
  border-bottom-color: #f3f4f6;
}

#seatPriceTooltip.tooltip-below.status-complimentary::after {
  border-bottom-color: #f0fdf4;
}

.tooltip-seat-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tooltip-seat-number {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.tooltip-price-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.tooltip-price {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
  animation: pricePopIn 0.3s ease-out;
}

.tooltip-currency {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.tooltip-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.tooltip-status.available {
  background: #dcfce7;
  color: #166534;
}

.tooltip-status.selected {
  background: #fed7aa;
  color: #9a3412;
}

.tooltip-status.reserved {
  background: #fef3c7;
  color: #92400e;
}

.tooltip-status.sold {
  background: #fee2e2;
  color: #991b1b;
}

.tooltip-status.subscribed {
  background: #ede9fe;
  color: #5b21b6;
}

.tooltip-extra-info {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #f3f4f6;
}

.tooltip-ticket-type {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 4px;
  padding: 3px 6px;
  background: #f3f4f6;
  border-radius: 4px;
  display: inline-block;
}

.tooltip-ticket-type i {
  font-size: 10px;
  margin-right: 4px;
  color: #9ca3af;
}

.tooltip-loading {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  color: #9ca3af;
}

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

/* Event Description Section */
.event-description-section {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  background: #fffbe8;
  border-radius: 1rem;
  box-shadow: 0 1px 1px rgba(245, 158, 11, 0.08);
  padding: 1.5rem 2rem;
  border: 1px solid #fde68a;
  font-size: 1.15rem;
  color: #92400e;
  line-height: 1.6;
}

.event-description-section i {
  margin-right: 0.5rem;
  color: #f59e0b;
}

/* Hero Header Styles */
.hero-header {
  position: relative;
  background: linear-gradient(135deg, #f0f4f8 0%, #e0e8f0 100%);
  color: #2d3748;
  padding: 20px 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.event-header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.event-title-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.event-main-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #2d3748;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
