
:root {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --border: #222222;
  --brand: #3B82F6;
  --brand-dark: #2563EB;
  --brand-glow: rgba(59,130,246,0.15);
  --text: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --radius: 12px;
  --radius-lg: 16px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; transition: color 0.2s; }
a:hover { color: #60A5FA; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }
.hero-grid {
  background-image: linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, #60A5FA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
header { background: #0a0a0a; border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 0; z-index: 100; }
header .container { display: flex; align-items: center; justify-content: space-between; }
header a { color: #fff; }
header a:hover { color: var(--brand); text-decoration: none; }
.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px; }
.logo:hover { color: #fff !important; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo span { color: var(--brand); }
.header-nav { display: flex; gap: 24px; font-size: 0.9rem; font-weight: 500; }
.header-nav a { color: var(--text-secondary); }
.header-nav a:hover { color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger svg { width: 24px; height: 24px; color: #fff; }
.mobile-menu { display: none; background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 12px 20px; }
.mobile-menu.active { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { color: var(--text-secondary); font-size: 0.95rem; font-weight: 600; padding: 12px 16px; border-radius: var(--radius); }
.mobile-menu a:hover, .mobile-menu a:active { color: #fff; background: rgba(255,255,255,0.05); }
.breadcrumb { padding: 12px 0; font-size: 0.8rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { margin: 0 6px; }
.hero { padding: 48px 0; }
.hero h1 { font-size: 2.2rem; font-weight: 900; letter-spacing: -1px; line-height: 1.15; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin-top: 24px; }
.hero-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; text-align: center; }
.hero-stat .num { font-size: 1.4rem; font-weight: 900; color: #fff; }
.hero-stat .label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.section { padding: 32px 0; }
.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-card { display: block; padding: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: inherit; transition: all 0.2s; }
.grid-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.grid-card h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.grid-card .count { font-size: 0.8rem; color: var(--text-muted); }
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; padding: 10px 20px; border-radius: var(--radius); transition: all 0.2s; cursor: pointer; text-decoration: none; border: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #60A5FA; color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); }
.btn-outline:hover { border-color: var(--brand); color: #fff; }
.faq { margin: 20px 0; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 16px 20px; font-weight: 700; font-size: 0.9rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--text-muted); transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 20px 16px; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.venue-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: all 0.2s; }
.venue-card:hover { border-color: var(--brand); }
.venue-card-link { text-decoration: none; color: inherit; display: block; }
.venue-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.venue-name { font-size: 1rem; font-weight: 800; color: #fff; }
.venue-category { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 6px; }
.venue-details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.venue-detail { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); }
.venue-actions { display: flex; gap: 8px; }
.verified-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: rgba(255,215,0,0.12); color: #FFD700; border: 1px solid rgba(255,215,0,0.2); }
.verified-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; background: rgba(255,215,0,0.1); padding: 6px 14px; border-radius: 8px; border: 1px solid rgba(255,215,0,0.2); }
.stars { display: inline-flex; align-items: center; gap: 1px; }
.star-fill { width: 14px; height: 14px; color: #3B82F6; }
.star-half { width: 14px; height: 14px; }
.star-empty { width: 14px; height: 14px; color: #333; }
.rating-text { font-size: 0.8rem; color: var(--text-secondary); margin-left: 4px; }
.cta-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.cta-box h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.cta-box p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.bg-ad { position: relative; border-radius: var(--radius-lg); padding: 28px; overflow: hidden; }
.bg-ad-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.bg-ad-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; }
.bg-ad-title { font-size: 1.15rem; font-weight: 900; color: #fff; line-height: 1.3; }
.bg-ad-body { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.bg-ad-btn { display: inline-flex; align-self: flex-start; padding: 10px 22px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 800; text-decoration: none; transition: all 0.2s; }
.bg-ad-btn:hover { opacity: 0.9; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.pricing-card.featured { border-color: var(--brand); box-shadow: 0 0 30px rgba(59,130,246,0.1); }
.price { font-size: 2.5rem; font-weight: 900; color: #fff; }
.price-period { font-size: 0.8rem; color: var(--text-muted); margin-top: -4px; }
.price-save { font-size: 0.75rem; font-weight: 700; color: #10B981; margin-top: 4px; }
.feature-line { display: flex; align-items: center; gap: 8px; }
.feature-line.no { opacity: 0.4; }
.accordion-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; }
.accordion-header h3 { font-size: 0.95rem; font-weight: 700; display: flex; align-items: center; gap: 8px; flex: 1; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 2000px; }
.accordion-content { padding: 0 20px 16px; }
.lock-pill { font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; background: rgba(239,68,68,0.1); color: #EF4444; border: 1px solid rgba(239,68,68,0.2); margin-left: 8px; white-space: nowrap; }
.chevron { transition: transform 0.2s; color: var(--text-muted); }
.accordion-item.open .chevron { transform: rotate(180deg); }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; color: #fff; font-size: 0.85rem; outline: none; font-family: inherit; transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--brand); }
.form-textarea { min-height: 80px; resize: vertical; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 8px; }
.review-author { font-weight: 700; font-size: 0.9rem; }
.review-text { font-size: 0.85rem; color: var(--text-secondary); margin-top: 8px; line-height: 1.6; }
.review-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; }
.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s; pointer-events: none; z-index: 99; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { border-color: var(--brand); }
footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 48px 0 24px; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col a:hover { color: var(--brand); }
.footer-col p { font-size: 0.85rem; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--text-muted); }
.search-box { position: relative; }
.search-row { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0; text-align: left; }
.search-select { padding: 14px 16px; background: var(--bg-card); border: 1px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); color: var(--text-secondary); font-size: 0.85rem; font-weight: 600; outline: none; cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; min-width: 160px; max-width: 160px; flex-shrink: 0; }
.search-select:focus { border-color: var(--brand); }
.search-input { width: 100%; padding: 14px 20px 14px 48px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 0 var(--radius) var(--radius) 0; color: #fff; font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
.search-input:focus { border-color: var(--brand); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.search-results { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-top: 4px; max-height: 360px; overflow-y: auto; z-index: 50; }
.search-results:not(.active) { display: none; }
.search-results .search-result { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: 0.85rem; color: var(--text-secondary); text-decoration: none; border-bottom: 1px solid var(--border); }
.search-results .search-result:last-child { border-bottom: none; }
.search-results .search-result:hover { background: rgba(255,255,255,0.03); color: #fff; }
.search-result-type { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; padding: 2px 8px; border-radius: 4px; white-space: nowrap; }
.search-divider { padding: 6px 16px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); border-top: 1px solid var(--border); }
.category-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.category-filters button { padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer; transition: all 0.2s; }
.category-filters button:hover, .category-filters button.active { border-color: var(--brand); color: #fff; background: var(--brand-glow); }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .header-nav { display: none; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid-3 { grid-template-columns: 1fr !important; }
  .bg-ad-content { gap: 12px; }
  .bg-ad-title { font-size: 1rem; }
  .search-row { flex-direction: column; gap: 8px; }
  .search-select { border-right: 1px solid var(--border); border-radius: var(--radius); }
  .search-input { border-radius: var(--radius); }
}
.city-map { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; position: relative; z-index: 1; }
.city-map .leaflet-container { background: var(--bg-card); }
