/* Happy Hour Map — City & Blog Page Styles (matches main marketing site theme) */
:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --border: #1f1f1f;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --teal: #00c4b8;
  --teal-bright: #2cd9cd;
  --orange: #ffa500;
  --gradient: linear-gradient(135deg, #00c4b8 0%, #2cd9cd 50%, #ffa500 100%);
  --shadow-brand: 0 10px 40px -10px rgba(0, 196, 184, 0.35);
  --shadow-brand-hover: 0 18px 55px -12px rgba(0, 196, 184, 0.5);
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='128' height='128'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

a { color: var(--teal-bright); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Header */
header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav a {
  margin-left: 28px;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
}
nav a:hover { color: var(--text); }

/* Hero */
.hero {
  text-align: center;
  padding: 90px 0 60px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 660px;
  margin: 0 auto 36px;
}

/* Buttons */
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.btn-primary {
  background: var(--gradient);
  color: #0a0a0a;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-hover);
  color: #0a0a0a;
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: var(--shadow-brand);
  color: var(--text);
}

/* Store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff !important;
  border: 1px solid #a6a6a6;
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 180px;
  text-decoration: none;
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.store-badge:hover {
  transform: translateY(-3px);
  border-color: #fff;
  box-shadow: 0 14px 40px -10px rgba(0, 196, 184, 0.45);
  color: #fff !important;
}
.store-badge-icon { width: 30px; height: 30px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1; }
.store-badge-line1 { font-size: 11px; font-weight: 400; margin-bottom: 4px; }
.store-badge-android .store-badge-line1 { font-size: 10px; letter-spacing: 1px; }
.store-badge-line2 { font-size: 19px; font-weight: 600; letter-spacing: -0.5px; }

/* Stats strip */
.stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Section titles */
.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 36px;
}

/* City grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 70px;
}
.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.city-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand);
}
.city-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.city-card .count {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 700;
}
.city-card .state { color: var(--text-muted); font-size: 13px; }

/* Deal cards */
.deal-list { margin-bottom: 70px; }
.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  transition: border-color 0.3s ease;
}
.deal-card:hover { border-color: var(--teal); }
.deal-name { font-weight: 600; font-size: 16px; color: var(--text); }
.deal-time { color: var(--text-dim); font-size: 14px; margin-top: 2px; }
.deal-tag {
  background: rgba(255, 165, 0, 0.12);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255, 165, 0, 0.25);
}

/* Blog cards */
.blog-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--text);
}
.blog-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand);
  color: var(--text);
}
.blog-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
}
.blog-card p { color: var(--text-dim); font-size: 15px; }
.blog-date {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Article */
.article { max-width: 760px; margin: 0 auto; padding: 60px 24px; position: relative; z-index: 2; }
.article h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
}
.article h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  margin: 40px 0 14px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.article p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.article ul { margin: 0 0 20px 24px; }
.article li { color: var(--text-dim); font-size: 16px; margin-bottom: 8px; line-height: 1.6; }
.article .highlight {
  background: var(--bg-card);
  border-left: 3px solid var(--teal);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article .highlight p { margin: 0; color: var(--text); }
.article strong { color: var(--text); }
.article a { color: var(--teal-bright); }
.article a:hover { color: var(--orange); }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  background: var(--bg-alt);
  position: relative;
  z-index: 2;
}
footer a { color: var(--text-dim); margin: 0 14px; }
footer a:hover { color: var(--teal-bright); }

/* Responsive */
@media (max-width: 760px) {
  .hero { padding: 60px 0 40px; }
  .stats { gap: 32px; padding: 36px 0; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  nav a { margin-left: 16px; font-size: 14px; }
}
