/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0b0f1a;
  --bg-alt:       #0e1220;
  --surface:      rgba(255,255,255,0.05);
  --surface-hover:rgba(255,255,255,0.08);
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(99,179,237,0.35);
  --primary:      #63b3ed;
  --primary-dark: #2b6cb0;
  --accent:       #f6ad55;
  --fg:           #edf2f7;
  --fg-muted:     #718096;
  --fg-subtle:    #4a5568;
  --green:        #68d391;
  --red:          #fc8181;
  --radius:       1rem;
  --radius-sm:    0.75rem;
  --shadow:       0 4px 32px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; font: inherit; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', ui-sans-serif, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
}

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

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

/* ===== LINKS ===== */
.link { color: var(--primary); }
.link:hover { text-decoration: underline; }

/* ===== GLASS CARD ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-hover {
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card-hover:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.18s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(99,179,237,0.35); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--border-hover); background: var(--surface-hover); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* ===== FORM INPUTS ===== */
.input, .textarea, .select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.18s;
  outline: none;
}
.input::placeholder, .textarea::placeholder { color: var(--fg-subtle); }
.input:focus, .textarea:focus, .select:focus { border-color: var(--primary); }
.input.error { border-color: var(--red); }
.textarea { resize: vertical; }
.select option { background: #1a202c; }

.field-error { color: var(--red); font-size: 0.78rem; margin-top: 0.25rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(11,15,26,0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.nav a {
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
  transition: color 0.15s, background 0.15s;
}
.nav a:hover, .nav a.active { color: var(--fg); background: var(--surface); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.18s, background 0.18s;
}
.cart-btn:hover { border-color: var(--border-hover); background: var(--surface-hover); }
.cart-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-badge.hidden { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.25s;
}
.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); }

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(11,15,26,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  z-index: 99;
  backdrop-filter: blur(16px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.95rem;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--fg); background: var(--surface); }
.mobile-nav .cart-btn { margin-top: 0.5rem; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--fg-muted); font-size: 0.88rem; line-height: 1.7; margin-top: 0.75rem; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--fg-muted);
  font-size: 0.88rem;
  padding: 0.2rem 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--fg-subtle); font-size: 0.8rem; }
.footer-links { display: flex; gap: 1rem; }
.footer-links a { color: var(--fg-subtle); font-size: 0.8rem; }
.footer-links a:hover { color: var(--primary); }
.disclaimer {
  background: rgba(99,179,237,0.06);
  border: 1px solid rgba(99,179,237,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  color: var(--fg-muted);
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.disclaimer strong { color: var(--primary); }

/* ===== PAGE WRAPPER ===== */
.page { padding-top: 64px; }
.page-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.page-header { padding: 3.5rem 0 2rem; }
.page-header .label { margin-bottom: 0.6rem; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.page-header p { color: var(--fg-muted); font-size: 1.05rem; margin-top: 0.75rem; max-width: 600px; }

/* ===== ORBS (animated blobs) ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 15s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orb-float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-40px) scale(1.06); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(11,15,26,0.65) 0%,
    rgba(11,15,26,0.5) 50%,
    rgba(11,15,26,1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
  padding-top: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(99,179,237,0.1);
  border: 1px solid rgba(99,179,237,0.3);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 1.8s ease-in-out infinite;
  opacity: 0.5;
}
.scroll-indicator div {
  width: 24px; height: 40px;
  border: 2px solid var(--fg-muted);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator div::before {
  content: '';
  width: 5px; height: 9px;
  background: var(--fg-muted);
  border-radius: 999px;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; padding: 2rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.stat { text-align: center; }
.stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.9rem; }
.stat-label { color: var(--fg-muted); font-size: 0.85rem; margin-top: 0.2rem; }

/* ===== SECTION ===== */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.section-header p { color: var(--fg-muted); margin-top: 0.75rem; font-size: 0.95rem; max-width: 560px; }
.section-header.center p { margin-left: auto; margin-right: auto; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.feature-card { padding: 1.75rem; text-align: center; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 0.9rem;
  background: rgba(99,179,237,0.08);
  border: 1px solid rgba(99,179,237,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-card p { color: var(--fg-muted); font-size: 0.85rem; line-height: 1.6; }

/* ===== TICKET CARDS ===== */
.tickets-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ticket-card { display: flex; flex-direction: column; overflow: hidden; }
.ticket-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.ticket-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.ticket-card:hover .ticket-card-img img { transform: scale(1.05); }
.ticket-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-vip      { background: linear-gradient(135deg,#f6ad55,#e53e3e); color: #fff; }
.badge-new      { background: linear-gradient(135deg,#68d391,#3182ce); color: #fff; }
.badge-hot      { background: linear-gradient(135deg,#f6ad55,#dd6b20); color: #fff; }
.badge-value    { background: linear-gradient(135deg,#63b3ed,#5a67d8); color: #fff; }
.badge-weekend  { background: linear-gradient(135deg,#81e6d9,#3182ce); color: #fff; }
.badge-group    { background: linear-gradient(135deg,#b794f4,#553c9a); color: #fff; }
.badge-popular  { background: rgba(99,179,237,0.9); color: #fff; }

.ticket-card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ticket-card-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.ticket-category { font-size: 0.72rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ticket-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.ticket-card-body p { color: var(--fg-muted); font-size: 0.85rem; line-height: 1.55; flex: 1; }
.ticket-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.ticket-price { display: flex; align-items: baseline; gap: 0.4rem; }
.ticket-price-current { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.5rem; }
.ticket-price-original { color: var(--fg-subtle); font-size: 0.85rem; text-decoration: line-through; }
.ticket-card-actions { display: flex; gap: 0.5rem; }

/* ===== TICKET DETAIL ===== */
.ticket-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.ticket-detail-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.ticket-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.ticket-detail-badges { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.ticket-detail h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 0.5rem; }
.ticket-detail-valid { display: flex; align-items: center; gap: 0.5rem; color: var(--fg-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.ticket-detail p.desc { color: var(--fg-muted); line-height: 1.75; margin-bottom: 2rem; }
.ticket-features h3 { font-size: 1rem; margin-bottom: 1rem; }
.ticket-features ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.ticket-features li { display: flex; align-items: center; gap: 0.6rem; color: var(--fg-muted); font-size: 0.88rem; }
.ticket-features li::before { content:''; width:18px; height:18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2363b3ed' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; }
.ticket-sidebar { position: sticky; top: 80px; }
.ticket-sidebar .card { padding: 2rem; }
.ticket-sidebar-price { margin-bottom: 1.5rem; }
.ticket-sidebar-price .price-main { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 2.5rem; }
.ticket-sidebar-price .price-orig { color: var(--fg-subtle); text-decoration: line-through; font-size: 1rem; margin-left: 0.5rem; }
.ticket-sidebar-price .savings {
  display: inline-block;
  background: rgba(104,211,145,0.12);
  border: 1px solid rgba(104,211,145,0.25);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-top: 0.5rem;
}
.qty-selector { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.qty-selector label { font-size: 0.88rem; color: var(--fg-muted); }
.qty-controls { display: flex; align-items: center; gap: 0.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 0.5rem; padding: 0.2rem 0.5rem; }
.qty-controls button { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--fg-muted); font-size: 1.1rem; transition: color 0.15s; }
.qty-controls button:hover { color: var(--fg); }
.qty-controls span { min-width: 24px; text-align: center; font-weight: 700; font-size: 0.95rem; }
.sidebar-meta { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.5rem 0; font-size: 0.83rem; color: var(--fg-muted); }
.sidebar-meta-row { display: flex; align-items: center; gap: 0.5rem; }
.sidebar-meta-row svg { width:15px; height:15px; stroke: var(--primary); fill:none; stroke-width:2; flex-shrink:0; stroke-linecap:round; stroke-linejoin:round; }
.divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.trust-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--fg-muted); }
.trust-row svg { width:15px; height:15px; stroke: var(--green); fill:none; stroke-width:2; flex-shrink:0; stroke-linecap:round; stroke-linejoin:round; }

/* ===== CART ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.cart-item { display: flex; gap: 1rem; padding: 1.25rem; }
.cart-item-img { width: 96px; height: 96px; border-radius: 0.75rem; overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 1rem; }
.cart-item-meta { color: var(--fg-muted); font-size: 0.78rem; margin-top: 0.2rem; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 0.75rem; }
.cart-qty { display: flex; align-items: center; gap: 0.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 0.5rem; padding: 0.2rem 0.5rem; }
.cart-qty button { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; color: var(--fg-muted); font-size: 1rem; }
.cart-qty button:hover { color: var(--fg); }
.cart-qty span { min-width: 20px; text-align: center; font-weight: 700; font-size: 0.88rem; }
.cart-remove { color: var(--fg-muted); padding: 0.3rem; border-radius: 0.4rem; transition: color 0.15s; }
.cart-remove:hover { color: var(--red); }
.cart-remove svg { width:16px; height:16px; stroke: currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.cart-item-subtotal { text-align: right; }
.cart-item-subtotal .unit { color: var(--fg-muted); font-size: 0.78rem; }
.cart-item-subtotal .total-price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; }
.cart-items { display: flex; flex-direction: column; gap: 0.75rem; }
.cart-clear { display: flex; align-items: center; gap: 0.4rem; color: var(--fg-muted); font-size: 0.82rem; margin-top: 0.75rem; cursor: pointer; transition: color 0.15s; align-self: flex-end; }
.cart-clear:hover { color: var(--red); }
.cart-clear svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.order-summary { padding: 1.5rem; margin-bottom: 1rem; }
.order-summary h2 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.summary-lines { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.summary-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--fg-muted); }
.summary-line span:last-child { color: var(--fg); }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.summary-total span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.summary-total .total-val { font-size: 1.7rem; }

.checkout-form { padding: 1.5rem; }
.checkout-form h2 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.82rem; color: var(--fg-muted); }

/* ===== EMPTY STATE ===== */
.empty-state { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; }
.empty-inner { text-align: center; max-width: 420px; padding: 2rem; }
.empty-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.empty-icon svg { width:36px; height:36px; stroke: var(--fg-muted); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.empty-inner h2 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.empty-inner p { color: var(--fg-muted); margin-bottom: 1.75rem; font-size: 0.9rem; }

/* Success state */
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(104,211,145,0.1); border: 2px solid rgba(104,211,145,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-icon svg { width:36px; height:36px; stroke: var(--green); fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }

/* Alert */
.alert { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.85rem; margin-top: 0.75rem; }
.alert-error { background: rgba(252,129,129,0.1); border: 1px solid rgba(252,129,129,0.25); color: var(--red); }
.alert svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; stroke-linecap:round; stroke-linejoin:round; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card { padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.review-stars { display: flex; gap: 2px; }
.star { width:16px; height:16px; fill: var(--accent); color: var(--accent); }
.star.empty { fill: transparent; color: var(--fg-subtle); }
.review-text { color: var(--fg-muted); font-size: 0.87rem; line-height: 1.65; flex:1; }
.review-footer { border-top: 1px solid var(--border); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar { width:38px; height:38px; border-radius:50%; background: rgba(99,179,237,0.15); border: 1px solid rgba(99,179,237,0.25); display:flex; align-items:center; justify-content:center; font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; color:var(--primary); font-size:0.9rem; flex-shrink:0; }
.reviewer-name { font-weight: 600; font-size: 0.88rem; }
.reviewer-loc { color: var(--fg-muted); font-size: 0.75rem; }
.review-ticket-tag { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 999px; background: rgba(99,179,237,0.1); border: 1px solid rgba(99,179,237,0.2); color: var(--primary); font-size: 0.72rem; font-weight: 600; width: fit-content; }

.reviews-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 480px; margin: 0 auto 4rem; }
.review-stat { padding: 1.25rem; text-align: center; }
.review-stat .val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.9rem; }
.review-stat .lbl { color: var(--fg-muted); font-size: 0.8rem; margin-top: 0.2rem; }

/* ===== FAQ ===== */
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; }
.faq-item { border: 1px solid var(--border); border-radius: 0.85rem; overflow: hidden; margin-bottom: 0.6rem; background: var(--surface); transition: border-color 0.2s; }
.faq-item.open { border-color: var(--border-hover); }
.faq-question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; text-align: left; color: var(--fg); font-size: 0.9rem; font-weight: 600; line-height: 1.5; }
.faq-question svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; margin-top:2px; transition: transform 0.25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer { display: none; padding: 0 1.25rem 1.1rem; border-top: 1px solid var(--border); }
.faq-answer p { color: var(--fg-muted); font-size: 0.87rem; line-height: 1.7; padding-top: 1rem; }
.faq-item.open .faq-answer { display: block; }

/* ===== ABOUT ===== */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 3.5rem 0 4rem; }
.about-hero-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/11; }
.about-hero-img img { width:100%; height:100%; object-fit:cover; }
.about-notice { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.1rem; border-radius: 0.75rem; background: rgba(99,179,237,0.07); border: 1px solid rgba(99,179,237,0.18); color: var(--fg-muted); font-size: 0.82rem; margin-top: 1.75rem; width: fit-content; }
.about-notice svg { width:16px; height:16px; stroke: var(--primary); fill:none; stroke-width:2; flex-shrink:0; stroke-linecap:round; stroke-linejoin:round; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.team-card { padding: 2rem 1.5rem; text-align: center; }
.team-avatar { width:64px; height:64px; border-radius:50%; background: rgba(99,179,237,0.15); border:2px solid rgba(99,179,237,0.25); display:flex; align-items:center; justify-content:center; font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:1.5rem; color:var(--primary); margin:0 auto 1rem; }
.team-card h3 { font-size:0.95rem; margin-bottom:0.2rem; }
.team-card p { color:var(--fg-muted); font-size:0.78rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card { padding: 1.25rem; display: flex; align-items: flex-start; gap: 0.85rem; }
.contact-info-icon { width:44px; height:44px; border-radius:0.75rem; background: rgba(99,179,237,0.08); border:1px solid rgba(99,179,237,0.18); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-icon svg { width:20px; height:20px; stroke:var(--primary); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contact-info-label { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--fg-muted); margin-bottom:0.2rem; }
.contact-info-val { font-weight:600; font-size:0.92rem; }
.contact-info-val a { color:var(--fg); transition: color 0.15s; }
.contact-info-val a:hover { color:var(--primary); }
.contact-form-card { padding: 2rem; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.msg-sent { display:flex; flex-direction:column; align-items:center; text-align:center; padding:3rem 2rem; gap:1rem; }
.msg-sent h2 { font-size:1.5rem; }
.msg-sent p { color:var(--fg-muted); font-size:0.88rem; }

/* ===== LEGAL PAGES ===== */
.legal-doc { padding: 2rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section h2 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.legal-section p { color: var(--fg-muted); font-size: 0.87rem; line-height: 1.75; }
.legal-notice { padding: 0.9rem 1.1rem; border-radius: 0.75rem; background: rgba(99,179,237,0.08); border: 1px solid rgba(99,179,237,0.2); color: var(--primary); font-size: 0.83rem; font-weight: 600; margin-bottom: 2rem; }
.legal-footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; font-size: 0.85rem; }
.legal-footer-links a { color: var(--fg-muted); transition: color 0.15s; }
.legal-footer-links a:hover { color: var(--primary); }

.cookie-type-card { padding: 1.5rem; margin-bottom: 1rem; }
.cookie-type-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:0.75rem; }
.cookie-type-header h3 { font-size:0.98rem; }
.cookie-tag { padding:0.2rem 0.65rem; border-radius:999px; font-size:0.7rem; font-weight:700; }
.cookie-tag.required { background: rgba(99,179,237,0.1); color: var(--primary); border:1px solid rgba(99,179,237,0.2); }
.cookie-tag.optional { background: var(--surface); color: var(--fg-muted); border:1px solid var(--border); }
.cookie-examples { font-size:0.77rem; color:var(--fg-subtle); margin-top:0.6rem; }
.cookie-examples strong { color: var(--fg-muted); }

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-tab {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-tab:hover { color: var(--fg); border-color: var(--border-hover); }
.filter-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  padding: 0.85rem 1.25rem;
  border-radius: 0.85rem;
  background: #1a202c;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { flex-shrink: 0; }
.toast-icon svg { width:18px; height:18px; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.toast.success .toast-icon svg { stroke: var(--green); }
.toast.info .toast-icon svg { stroke: var(--primary); }

/* ===== CTA BANNER ===== */
.cta-banner { position:relative; overflow:hidden; border-radius:1.5rem; }
.cta-banner-bg { position:absolute; inset:0; background-image:url('../images/ticket-night.jpg'); background-size:cover; background-position:center; opacity:0.2; }
.cta-banner-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(to right, rgba(11,15,26,0.92) 0%, rgba(11,15,26,0.6) 100%); }
.cta-banner-inner { position:relative; z-index:2; padding:3.5rem; display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }

/* ===== SPINNER ===== */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== UTILITIES ===== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.text-muted { color: var(--fg-muted); }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tickets-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .ticket-detail-grid { grid-template-columns: 1fr; }
  .ticket-sidebar { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-grid .about-hero-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .tickets-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .reviews-stats { grid-template-columns: repeat(3,1fr); }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .reviews-stats { grid-template-columns: 1fr; }
}
