/* ХочуЛот - Dark Theme */

:root {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-card: #242424;
  --bg-hover: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent: #7c3aed;
  --accent-hover: #8b5cf6;
  --accent-light: rgba(124, 58, 237, 0.1);
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --border: #333333;
  --shadow: rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0a0a0f 0%, #0f0f18 50%, #0a0a12 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Header */
.header {
  background: linear-gradient(180deg, rgba(20, 20, 30, 0.95) 0%, rgba(15, 15, 22, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .header-content {
    gap: 1rem;
  }
  .search-form {
    max-width: 400px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.logo:hover {
  color: var(--text-primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.btn-success {
  background: linear-gradient(135deg, var(--success), #16a34a);
  color: white;
  border: none;
  white-space: nowrap;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.btn-success:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
}

.logo-text {
  font-size: 1.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22C55E 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo img {
  height: 42px;
}

/* Search */
.search-form {
  flex: 1;
  max-width: 600px;
  display: flex;
  gap: 0.5rem;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
}

.search-input::placeholder {
  color: var(--text-secondary);
}

.btn {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-link {
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.9rem;
}

/* Main */
.main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Categories */
.categories {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.category-tag {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(145deg, rgba(30, 30, 46, 0.8) 0%, rgba(20, 20, 32, 0.8) 100%);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 25px;
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.category-tag:hover {
  border-color: rgba(124, 58, 237, 0.5);
  color: #c4b5fd;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.category-tag.active {
  border-color: #7c3aed;
  color: #a78bfa;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.3) 0%, rgba(124, 58, 237, 0.15) 100%);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

/* Listings Grid */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.listing-card {
  background: linear-gradient(145deg, #1e1e2e 0%, #141420 100%);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.listing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}

.listing-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2), 0 0 60px rgba(124, 58, 237, 0.1);
}

.listing-card:hover::before {
  opacity: 1;
}

.listing-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.listing-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  transition: transform 0.5s ease;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

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

/* Слайдер для карточек */
.listing-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-slide.active {
  opacity: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-card:hover .slider-nav {
  opacity: 1;
}

.slider-nav:hover {
  background: rgba(124, 58, 237, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 8px; }
.slider-next { right: 8px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
  background: #7c3aed;
  transform: scale(1.3);
}

.listing-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 20, 0.95) 0%, rgba(15, 15, 20, 0.3) 50%, transparent 100%);
  pointer-events: none;
}

.listing-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 20, 0.5) 100%);
}

.listing-category {
  font-size: 0.8rem;
  color: #a78bfa;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(124, 58, 237, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.listing-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.listing-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  text-shadow: none;
}

.listing-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 500;
}

.ticket-price {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  color: #c4b5fd;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 1.25rem;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 50%, #22c55e 100%);
  border-radius: 10px;
  transition: width 0.5s ease-out;
  position: relative;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Forms */
.form-container {
  max-width: 400px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.form-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-secondary);
}

/* Listing Detail */
.listing-detail {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}

/* Photo Gallery / Slideshow */
.listing-gallery {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e1e2e 0%, #141420 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15, 15, 20, 0.8) 100%);
  pointer-events: none;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(124, 58, 237, 0.5);
  border-color: rgba(124, 58, 237, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 1rem; }
.gallery-nav.next { right: 1rem; }

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

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.gallery-dot.active,
.gallery-dot:hover {
  background: #7c3aed;
  transform: scale(1.2);
}

.gallery-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}

.gallery-thumb:hover {
  border-color: rgba(124, 58, 237, 0.5);
}

.gallery-thumb.active {
  border-color: #7c3aed;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-detail-image {
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(145deg, #1e1e2e 0%, #141420 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.listing-detail-info {
  background: linear-gradient(145deg, #1e1e2e 0%, #141420 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 100px;
}

.listing-detail-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.listing-detail-price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.buy-section {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.buy-section h3 {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: #c4b5fd;
  font-weight: 600;
}

.tickets-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #9ca3af;
  font-size: 0.95rem;
}

.tickets-info strong {
  color: #ffffff;
}

/* Description Section */
.description-section {
  margin-top: 2rem;
  background: linear-gradient(145deg, #1e1e2e 0%, #141420 100%);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.description-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.description-text {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 1rem;
}

/* Buy Ticket Button */
.buy-ticket-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #22c55e 100%);
  background-size: 200% auto;
  border: none;
  border-radius: 14px;
  color: white;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  position: relative;
  overflow: hidden;
}

.buy-ticket-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transition: left 0.5s;
}

.buy-ticket-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

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

.buy-ticket-btn:active {
  transform: translateY(0);
}

.buy-ticket-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* User Tickets Section */
.user-tickets-section {
  margin-top: 1.5rem;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
}

.user-tickets-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 1rem;
}

.user-tickets-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.user-ticket-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: all 0.2s;
}

.user-ticket-item:hover {
  background: rgba(34, 197, 94, 0.1);
  transform: translateX(4px);
}

.user-ticket-item .ticket-icon {
  font-size: 1.2rem;
}

.user-ticket-item .ticket-number {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.95rem;
  color: #22c55e;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Quantity Selector */
.quantity-selector {
  margin-bottom: 1rem;
}

.quantity-selector label {
  display: block;
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
  color: #c4b5fd;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.4) 0%, rgba(124, 58, 237, 0.2) 100%);
  border-color: rgba(124, 58, 237, 0.6);
  transform: scale(1.05);
}

.quantity-controls input {
  width: 80px;
  height: 44px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  -moz-appearance: textfield;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-controls input:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.total-price span {
  color: #9ca3af;
  font-size: 1rem;
}

.total-price strong {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sold-out {
  text-align: center;
  padding: 1.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  color: #fbbf24;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Profile */
.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

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

.ticket-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.ticket-number {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

/* About page */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(15, 15, 22, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #6b7280;
  margin-top: 4rem;
  backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }
  
  .search-form {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }
  
  .listing-detail {
    grid-template-columns: 1fr;
  }
  
  .listings-grid {
    grid-template-columns: 1fr;
  }
}

/* Goal reached message */
.goal-reached { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; padding: 12px 20px; border-radius: 10px; text-align: center; margin-bottom: 20px; font-weight: 600; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
