:root {
  --hub-bg: #0B0F19;
  --hub-surface: #131B2E;
  --hub-card: #182238;
  --hub-border: #233150;
  --hub-amber: #F59E0B;
  --hub-emerald: #10B981;
  --hub-sky: #38BDF8;
  --hub-text: #F8FAFC;
  --hub-text-muted: #94A3B8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--hub-bg);
  color: var(--hub-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Banner */
.top-notice-bar {
  background: #1E293B;
  border-bottom: 1px solid #334155;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #CBD5E1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-tag {
  background: var(--hub-emerald);
  color: #000;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Header */
.hub-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hub-border);
  padding: 0.85rem 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hub-amber), #E11D48);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.brand-text h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hub-amber);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--hub-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--hub-amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-amber {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
  transition: all 0.2s;
}

.btn-amber:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.btn-glass {
  background: var(--hub-surface);
  color: #fff;
  border: 1px solid var(--hub-border);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-glass:hover {
  background: var(--hub-card);
  border-color: #3B82F6;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  background: linear-gradient(to bottom, rgba(11,15,25,0.7), var(--hub-bg)), url('/scrapes/roseandcrownkingston.com/bar.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--hub-border);
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(19, 27, 46, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: var(--hub-amber);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hub-emerald);
  display: inline-block;
  box-shadow: 0 0 10px var(--hub-emerald);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #FCD34D, #F87171, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--hub-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.quick-ticker-bar {
  background: rgba(19, 27, 46, 0.9);
  border: 1px solid var(--hub-border);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: left;
}

.quick-ticker-bar strong {
  display: block;
  font-size: 0.8rem;
  color: #fff;
}

.quick-ticker-bar span {
  font-size: 0.7rem;
  color: var(--hub-amber);
  font-weight: 700;
}

/* Sections */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--hub-border);
}

.section-header {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hub-amber);
  display: block;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  color: var(--hub-text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-pill.active {
  background: var(--hub-amber);
  color: #000;
  border-color: var(--hub-amber);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s;
}

.event-card:hover {
  border-color: var(--hub-amber);
  transform: translateY(-2px);
}

.event-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
}

.badge-music {
  background: rgba(16, 185, 129, 0.15);
  color: var(--hub-emerald);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-trivia {
  background: rgba(245, 158, 11, 0.15);
  color: var(--hub-amber);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-sports {
  background: rgba(244, 63, 94, 0.15);
  color: #FB7185;
  border: 1px solid rgba(244, 63, 94, 0.4);
}

/* Takeout Cards Grid */
.takeout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.takeout-card {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.takeout-top {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.takeout-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--hub-border);
}

.takeout-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hub-border);
}

.price-tag {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--hub-amber);
}

.btn-add-cart {
  background: var(--hub-emerald);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add-cart:hover {
  filter: brightness(1.1);
}

/* Draft Board Grid */
.draft-banner {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tap-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tap-item {
  background: var(--hub-bg);
  border: 1px solid var(--hub-border);
  padding: 0.75rem;
  border-radius: 12px;
}

.tap-item strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.tap-item span {
  font-size: 0.7rem;
  color: var(--hub-text-muted);
}

/* NetZero Footer */
.netzero-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0F172A;
  border-top: 2px solid var(--hub-emerald);
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .draft-banner {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
