/*
  AKDENİZ LİVE - Premium Web Application Stylesheet (Expanded Version)
  Theme: Mediterranean Coast (Deep Sea Blue, Glowing Turquoise, Sunset Orange, Warm Sand)
  Design: High-End Glassmorphism, Neon Glow Accents, Smooth Animations
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Unbounded:wght@400;700;900&display=swap');

:root {
  /* Color Scheme - Mediterranean (Akdeniz) */
  --body-bg-color: #050811;
  /* Deepest sea night */
  --white-color: #ffffff;
  --primary-color: #ff6b35;
  /* Mediterranean Sunset Orange */
  --primary-glow: rgba(255, 107, 53, 0.4);
  --secondary-color: #00f5d4;
  /* Pure Turquoise Sea water */
  --secondary-glow: rgba(0, 245, 212, 0.3);
  --accent-color: #fee440;
  /* Golden Sand Sun */

  --dark-color: #0b132b;
  --glass-bg: rgba(11, 19, 43, 0.55);
  --glass-border: rgba(0, 245, 212, 0.18);
  --glass-border-hover: rgba(255, 107, 53, 0.45);

  /* CRITICAL CONTRAST FIX - Making sub-descriptions a highly readable bright white/gray */
  --p-color: #f8fafc;
  /* Bright white-slate text for high contrast */
  --link-hover-color: #00f5d4;

  --body-font-family: 'Outfit', sans-serif;
  --heading-font-family: 'Unbounded', sans-serif;

  --h1-font-size: 64px;
  --h2-font-size: 38px;
  --h3-font-size: 28px;
  --h4-font-size: 22px;
  --h5-font-size: 18px;
  --h6-font-size: 16px;
  --p-font-size: 17px;
  --menu-font-size: 16px;
  --btn-font-size: 14px;

  --border-radius-large: 50px;
  --border-radius-medium: 18px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 800;
}

/* Dark mode overrides */
.dark-mode {
  --body-bg-color: #0b132b;
  --glass-bg: rgba(11, 19, 43, 0.75);
  --glass-border: rgba(0, 245, 212, 0.25);
  --p-color: #f0f0f0;
}



/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--body-bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: var(--border-radius-small);
  border: 2px solid var(--body-bg-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-glow);
}

body {
  background-color: var(--body-bg-color);
  font-family: var(--body-font-family);
  color: var(--white-color);
  overflow-x: hidden;
}

/*---------------------------------------
  TYPOGRAPHY & CONTRAST OVERRIDES
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.5px;
  color: var(--white-color);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 245, 212, 0.25);
}

h2 {
  font-size: var(--h2-font-size);
  background: linear-gradient(135deg, var(--white-color) 40%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  line-height: 1.6;
}

/* CRITICAL CONTRAST FIX: Override default Bootstrap muted text to make descriptions extremely clear and bright white on dark panels */
.text-muted {
  color: #ffffff !important;
  font-weight: 500 !important;
  opacity: 0.95 !important;
}

.text-bright {
  color: #ffffff !important;
  font-weight: 600 !important;
}

.text-slate-light {
  color: #ffffff !important;
  font-weight: 500 !important;
  opacity: 0.95 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-glow);
}

/*---------------------------------------
  CUSTOM BUTTONS               
-----------------------------------------*/
.custom-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e24a1f 100%);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color) !important;
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  padding: 12px 28px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px var(--primary-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap; /* Metin ve ikonun alt satıra geçmesini engelle */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.custom-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s;
  z-index: -1;
}

.custom-btn:hover::before {
  left: 100%;
}

.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color) !important;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.1);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  color: var(--body-bg-color) !important;
  box-shadow: 0 4px 15px var(--secondary-glow);
  transform: translateY(-2px);
}

/*---------------------------------------
  SITE HEADER        
-----------------------------------------*/
.site-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  transition: background-color 0.3s, padding 0.3s, backdrop-filter 0.3s;
  background: rgba(5, 8, 17, 0.75);
  backdrop-filter: blur(14px);
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.site-header .container {
  background: rgba(5, 8, 17, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-large);
  padding: 10px 25px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}

.site-header.scrolled .container {
  border-color: rgba(0, 245, 212, 0.3);
  box-shadow: 0 8px 32px rgba(0, 245, 212, 0.15);
}

.site-header-logo {
  font-family: var(--heading-font-family);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--white-color) 30%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header-logo svg {
  filter: drop-shadow(0 0 6px var(--secondary-color));
  transition: transform 0.8s ease;
}

.site-header-logo:hover svg {
  transform: rotate(360deg);
}

/* Navigation Links inside Header */
.header-nav {
  display: flex;
  gap: 8px; /* Mükemmel boşluk */
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap; /* Kesinlikle satır sarmasını engelle */
}

.header-nav-link {
  font-family: var(--body-font-family); /* Outfit - Çok daha dar ve şık */
  font-size: 14px; /* Kolay okunabilirlik */
  font-weight: var(--font-weight-medium);
  color: var(--white-color);
  padding: 8px 12px; /* Dikey 8px, yatay 12px sığması için optimize */
  border-radius: var(--border-radius-large);
  position: relative;
  overflow: hidden;
  white-space: nowrap; /* Metnin kırılıp iki satır olmasını engelle */
  transition: all 0.25s ease;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  left: 12px; /* Sol dolgu (padding) başlangıcı */
  bottom: 4px;
  width: calc(100% - 24px); /* Toplam yatay dolgu (12px sol + 12px sağ) çıkarıldı */
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(0); /* Başlangıçta genişliği 0 yaparak çizgiyi tamamen gizle */
  transform-origin: center; /* Ortadan iki yana doğru genişleme efekti */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-link:hover::after,
.header-nav-link.active::after {
  transform: scaleX(1); /* Aktif/Hover durumunda tam genişliğe getir */
}

.header-nav-link:hover,
.header-nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(0, 245, 212, 0.08);
}

/* Offcanvas Menu Styling */
.offcanvas {
  background: rgba(5, 8, 17, 0.95) !important;
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border) !important;
  padding: 40px;
}

/* Theme switch button */
#theme-switch {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--white-color);
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#theme-switch:hover {
  background: rgba(0, 245, 212, 0.1);
  border-color: var(--secondary-color);
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.4);
  transform: scale(1.08) rotate(15deg);
}

.offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}

.offcanvas nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.offcanvas nav ul li {
  margin: 20px 0;
}

.offcanvas nav ul li a {
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  padding: 10px 0;
  display: block;
}

.offcanvas nav ul li a:hover {
  color: var(--secondary-color);
  padding-left: 10px;
}

.offcanvas-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
}

/*---------------------------------------
  HERO SECTION (Looping Earth Background)
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(5, 8, 17, 0.2) 0%, rgba(5, 8, 17, 0.85) 70%, #050811 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-tagline {
  color: var(--secondary-color);
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

.video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Countdown Clock */
.countdown {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding: 0;
}

.countdown-item {
  list-style: none;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 12px 18px;
  border-radius: var(--border-radius-medium);
  min-width: 80px;
  text-align: center;
  transition: all 0.3s;
}

.countdown-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 245, 212, 0.15);
}

.countdown-title {
  font-family: var(--heading-font-family);
  font-weight: 900;
  font-size: 26px;
  color: var(--white-color);
  margin-bottom: 2px;
}

.countdown-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

/*---------------------------------------
  MAIN GLASS PANELS / DYNAMIC PAGES
-----------------------------------------*/
.app-container {
  position: relative;
  z-index: 10;
  margin-top: -10vh;
  /* Smoothly overlap the hero */
  padding-bottom: 80px;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 40px;
}

.glass-panel:hover {
  border-color: rgba(0, 245, 212, 0.3);
  box-shadow: 0 15px 45px rgba(0, 245, 212, 0.12);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title-wrap h2 {
  font-size: 32px;
  margin-bottom: 15px;
  display: inline-block;
}

.section-subtitle {
  color: var(--p-color);
  /* Bright White / slate text */
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Dynamic State Transitions */
.view-section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.view-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/*---------------------------------------
  NEW: EVENT CATEGORY FILTER BAR
-----------------------------------------*/
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--white-color);
  padding: 10px 22px;
  border-radius: var(--border-radius-large);
  font-family: var(--heading-font-family);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary-color);
  color: var(--body-bg-color);
  box-shadow: 0 4px 15px var(--secondary-glow);
  border-color: transparent;
  transform: translateY(-2px);
}

/*---------------------------------------
  EVENTS SHOWCASE
-----------------------------------------*/
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.event-card {
  background: rgba(11, 19, 43, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.event-img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.event-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.95) 0%, transparent 80%);
}

.event-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(5, 8, 17, 0.85);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-family: var(--heading-font-family);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--border-radius-large);
  text-transform: uppercase;
}

.event-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-title {
  font-size: 18px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.event-card:hover .event-title {
  color: var(--secondary-color);
}

.event-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 14px;
}

.event-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  /* CRITICAL CONTRAST FIX - Bright white/light slate text next to icons */
}

.event-details li i {
  color: var(--secondary-color);
  font-size: 15px;
  filter: drop-shadow(0 0 4px var(--secondary-glow));
}

.event-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 15px;
}

.event-price {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-color);
}

.event-price span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  /* Bright white subtext */
  font-weight: normal;
}

/*---------------------------------------
  NEW: ANTALYA VENUE SHOWCASE (KEŞİF REHBERİ)
-----------------------------------------*/
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.venue-card {
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  z-index: 1;
}

.venue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 8, 17, 0.98) 0%, rgba(5, 8, 17, 0.5) 60%, transparent 100%);
  z-index: -1;
}

.venue-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(0, 245, 212, 0.2);
}

.venue-title {
  font-family: var(--heading-font-family);
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 8px;
}

.venue-title i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.venue-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9) !important;
  /* CRITICAL CONTRAST FIX - Bright white/slate text on dark overlay */
  margin: 0;
  line-height: 1.5;
}

/*---------------------------------------
  NEW: FAQ DYNAMIC ACCORDION (SSS)
-----------------------------------------*/
.faq-accordion .accordion-item {
  background: rgba(11, 19, 43, 0.35) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border) !important;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-accordion .accordion-button {
  background: transparent !important;
  color: var(--white-color) !important;
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 700;
  padding: 18px 24px;
  box-shadow: none !important;
  border: none;
  text-align: left;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 245, 212, 0.05) !important;
  color: var(--secondary-color) !important;
}

.faq-accordion .accordion-body {
  padding: 20px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9) !important;
  /* CRITICAL CONTRAST FIX - Highly readable white explanation */
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/*---------------------------------------
  NEW: INTERACTIVE SEATING PLAN VISUAL MOCKUP
-----------------------------------------*/
.seating-map-container {
  background: rgba(5, 8, 17, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}

.seating-stage {
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--body-bg-color);
  font-family: var(--heading-font-family);
  font-size: 10px;
  font-weight: 900;
  padding: 6px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.35);
  letter-spacing: 2px;
}

.seating-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seating-row-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seating-row-label {
  font-size: 11px;
  font-family: var(--heading-font-family);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.seating-seats {
  display: flex;
  gap: 6px;
}

.seating-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

/* Active seating zone visualization styles */
.seating-row-group.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 245, 212, 0.2);
  transform: scale(1.02);
}

.seating-row-group.active .seating-dot.dot-standart {
  background: var(--secondary-color);
  box-shadow: 0 0 8px var(--secondary-color);
}

.seating-row-group.active .seating-dot.dot-vip {
  background: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-color);
}

.seating-row-group.active .seating-dot.dot-frontstage {
  background: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color);
}

.seating-row-group.dimmed {
  opacity: 0.3;
}

/*---------------------------------------
  TICKET DASHBOARD & CARDS
-----------------------------------------*/
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font-family);
  font-weight: 700;
  color: var(--body-bg-color);
}

.tickets-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* High Fidelity Physical Ticket Layout */
.ticket-card {
  display: flex;
  background: linear-gradient(135deg, rgba(17, 27, 56, 0.85) 0%, rgba(8, 14, 30, 0.95) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-height: 180px;
}

.ticket-card::before,
.ticket-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--body-bg-color);
  border-radius: 50%;
  left: 75%;
  z-index: 5;
  border: 1px solid var(--glass-border);
}

.ticket-card::before {
  top: -10px;
}

.ticket-card::after {
  bottom: -10px;
}

.ticket-main {
  width: 75%;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ticket-tearlines {
  position: absolute;
  left: 75%;
  top: 15px;
  bottom: 15px;
  width: 1px;
  border-right: 2px dashed rgba(0, 245, 212, 0.25);
  z-index: 4;
}

.ticket-stub {
  width: 25%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 245, 212, 0.03);
}

.ticket-event-tag {
  color: var(--secondary-color);
  font-family: var(--heading-font-family);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ticket-event-name {
  font-size: 20px;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.ticket-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  font-size: 13px;
}

.ticket-meta-label {
  color: rgba(255, 255, 255, 0.85);
  /* CRITICAL CONTRAST FIX - Bright white/slate labels */
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ticket-meta-val {
  font-weight: var(--font-weight-medium);
  color: var(--white-color);
}

.qr-placeholder {
  width: 100px;
  height: 100px;
  background: var(--white-color);
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ticket-stub-code {
  font-family: var(--heading-font-family);
  font-size: 10px;
  color: var(--accent-color);
}

/* Empty Dashboard State */
.empty-tickets {
  text-align: center;
  padding: 50px 20px;
}

.empty-tickets i {
  font-size: 60px;
  color: var(--glass-border);
  margin-bottom: 20px;
  display: block;
}

/*---------------------------------------
  AUTHENTICATION MODALS & FORMS
-----------------------------------------*/
.modal-content {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  color: var(--white-color);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 30px;
}

.modal-header h5 {
  font-size: 20px;
  color: var(--white-color);
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 30px;
}

.form-floating {
  margin-bottom: 20px;
}

.form-floating>.form-control {
  background: rgba(5, 8, 17, 0.6);
  border: 1px solid var(--glass-border);
  color: var(--white-color);
  border-radius: 12px;
  height: 58px;
}

.form-floating>.form-control:focus {
  background: rgba(5, 8, 17, 0.85);
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-glow);
  color: var(--white-color);
}

.form-floating>label {
  color: rgba(255, 255, 255, 0.85);
  /* CRITICAL CONTRAST FIX - Bright white/slate labels */
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--secondary-color);
}

/* Alert styles */
.alert-custom {
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  border-radius: 12px;
  margin-bottom: 20px;
}

/*---------------------------------------
  FOOTER DESIGN
-----------------------------------------*/
.site-footer {
  background: rgba(5, 8, 17, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.site-footer-logo {
  font-family: var(--heading-font-family);
  font-size: 22px;
  font-weight: 900;
  color: var(--white-color);
  margin-bottom: 15px;
}

.site-footer-logo span {
  color: var(--secondary-color);
}

.designer-credit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  /* CRITICAL CONTRAST FIX - Make copyright credits highly visible */
  margin-top: 20px;
}

.designer-credit a {
  color: var(--secondary-color);
  font-weight: 700;
  position: relative;
  transition: all 0.3s;
}

.designer-credit a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.designer-credit a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.designer-credit a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

/*---------------------------------------
  CHATBOT SYSTEM (Meltem Asistan)
-----------------------------------------*/
.chatbot-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e24a1f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.chatbot-bubble:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.chatbot-bubble i {
  color: var(--white-color);
  font-size: 24px;
}

.chatbot-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 2px solid var(--body-bg-color);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 245, 212, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 245, 212, 0);
  }
}

.chatbot-window {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 380px;
  height: 500px;
  background: rgba(5, 8, 17, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}

.chatbot-window.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chatbot-header {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 245, 212, 0.05));
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: rgba(0, 245, 212, 0.15);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}

.chatbot-name {
  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 700;
}

.chatbot-status {
  font-size: 10px;
  color: var(--secondary-color);
  display: block;
}

.chatbot-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.chatbot-close-btn:hover {
  color: var(--white-color);
}

.chatbot-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-bubble.bot {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  /* Highly legible white chatbot text */
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.chat-bubble.user {
  background: var(--primary-color);
  color: var(--white-color);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.chat-chip {
  background: rgba(0, 245, 212, 0.05);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}

.chat-chip:hover {
  background: var(--secondary-color);
  color: var(--body-bg-color);
  box-shadow: 0 4px 10px var(--secondary-glow);
}

.chatbot-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 10px;
}

.chatbot-input {
  flex-grow: 1;
  background: rgba(5, 8, 17, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 8px 18px;
  color: var(--white-color);
  font-size: 13px;
  outline: none;
  transition: border 0.3s;
}

.chatbot-input:focus {
  border-color: var(--secondary-color);
}

.chatbot-send-btn {
  width: 38px;
  height: 38px;
  background: var(--secondary-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-bg-color);
  cursor: pointer;
  transition: all 0.2s;
}

.chatbot-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px var(--secondary-glow);
}

/*---------------------------------------
  RESPONSIVE VIEWS               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .site-header .container {
    max-width: 95%;
  }

  .app-container {
    margin-top: -5vh;
    padding-bottom: 40px;
  }

  .ticket-card {
    flex-direction: column;
    min-height: auto;
  }

  .ticket-card::before,
  .ticket-card::after {
    left: auto;
    right: -10px;
    width: 20px;
    height: 20px;
  }

  .ticket-card::before {
    top: 70%;
  }

  .ticket-card::after {
    bottom: auto;
    top: 70%;
    display: none;
  }

  /* hide bottom circle */
  .ticket-main {
    width: 100%;
    border-bottom: 2px dashed rgba(0, 245, 212, 0.15);
    padding-bottom: 30px;
  }

  .ticket-tearlines {
    left: 15px;
    right: 15px;
    top: 70%;
    bottom: auto;
    width: auto;
    height: 1px;
    border-right: none;
    border-top: 2px dashed rgba(0, 245, 212, 0.25);
  }

  .ticket-stub {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px;
    background: rgba(0, 245, 212, 0.02);
  }

  .qr-placeholder {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .chatbot-window {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 95px;
    left: 20px;
  }

  .chatbot-bubble {
    right: 20px;
    bottom: 20px;
  }

  .site-header-logo span {
    font-size: 16px;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .glass-panel {
    padding: 25px 15px;
  }
}

/*---------------------------------------
  PARTNERS / SPONSORS SLIDER STYLE
-----------------------------------------*/
.partners-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.partners-slider-track {
  display: flex;
  width: calc(250px * 12);
  animation: partners-scroll 35s linear infinite;
}

.partners-slider-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.partner-logo:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px var(--secondary-glow);
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 6));
  }
}

/*---------------------------------------
  TESTIMONIALS STYLE
-----------------------------------------*/
.testimonial-card {
  background: rgba(11, 19, 43, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-medium);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 25px rgba(0, 245, 212, 0.12);
}

.testimonial-rating {
  margin-bottom: 15px;
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9) !important;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-initials {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font-family);
  font-size: 11px;
  font-weight: 700;
  color: var(--body-bg-color);
}