  :root {
    --ink: #0d1117;
    --paper: #f5f0e8;
    --water: #1a4a6b;
    --water-light: #2a6fa8;
    --gold: #c8973a;
    --gold-light: #e8b85a;
    --bass-green: #2d5a27;
    --bass-green-light: #3d7a35;
    --rust: #8b3a1a;
    --muted: #6b6055;
    --line: #d4c8b4;
  }

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

  body {
    background: var(--ink);
    font-family: 'Barlow', sans-serif;
    color: var(--paper);
    min-height: 100vh;
  }

  /* HEADER */
  .site-header {
    background: var(--water);
    border-bottom: 4px solid var(--gold);
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 1001;
  }

  .header-bg {
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.02) 40px,
        rgba(255,255,255,0.02) 41px
      );
  }

  .header-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
  }

  .back-link {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffe066;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.2s;
    margin-bottom: 10px;
    background: rgba(200,151,58,0.15);
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(200,151,58,0.3);
  }
  .back-link:hover { opacity: 0.85; }

  .header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    align-items: center;
  }
  .header-links .back-link { margin-bottom: 0; }
  .header-link-pill {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffe066;
    text-decoration: none;
    background: rgba(200,151,58,0.15);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(200,151,58,0.3);
    transition: all 0.2s;
  }
  .header-link-pill:hover {
    background: rgba(200,151,58,0.28);
    color: #fff;
  }
  .header-link-pill.fb-pill {
    background: rgba(24,119,242,0.22);
    border-color: rgba(120,180,255,0.5);
    color: #cfe0ff;
  }
  .header-link-pill.fb-pill:hover {
    background: rgba(24,119,242,0.4);
    color: #fff;
  }
  .header-link-pill.records-pill {
    background: rgba(255,215,0,0.18);
    border-color: rgba(255,215,0,0.55);
    color: #ffe066;
  }
  .header-link-pill.records-pill:hover {
    background: rgba(255,215,0,0.32);
    color: #fff;
  }
  @media (max-width: 600px) {
    .header-link-pill { font-size: 11px; padding: 4px 8px; letter-spacing: 1px; }
  }

  .header-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 7vw, 72px);
    letter-spacing: 3px;
    line-height: 0.9;
    color: var(--paper);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  }

  .header-text .subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 6px;
  }

  /* MAIN CONTENT */
  .main {
    padding-top: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px 64px;
  }

  /* TIMELINE */
  .timeline { position: relative; padding-left: 0; }

  /* MONTH GROUP */
  .month-group { margin-bottom: 8px; }

  .month-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0 8px;
    cursor: pointer;
    user-select: none;
    scroll-margin-top: 80px;
  }

  .month-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--gold);
    min-width: 120px;
  }

  .month-line { flex: 1; height: 1px; background: rgba(200,151,58,0.3); }

  .month-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* EVENT CARD */
  .event-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    /* animation: slideIn 0.4s ease both; — disabled for performance on large calendars */
  }

  .event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .event-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    text-align: center;
  }

  .event-date-block .day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
  }

  .event-date-block .day-range {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    line-height: 1;
  }

  .event-date-block .month-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
    margin-bottom: 1px;
  }

  .event-date-block .weekday {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 2px;
  }

  .event-body {
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .event-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--paper);
  }

  .event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gold-light);
    font-weight: 600;
    flex-wrap: wrap;
  }

  .event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
  }

  .tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
  }

  .tag.bass { background: rgba(45,90,39,0.4); color: #7ec77a; border: 1px solid rgba(125,200,120,0.3); }
  .tag.aoy { background: rgba(26,74,107,0.5); color: #7ac0e8; border: 1px solid rgba(122,192,232,0.3); }
  .tag.two-day { background: rgba(139,58,26,0.4); color: #e8956a; border: 1px solid rgba(232,149,106,0.3); }
  .tag.classic { background: rgba(200,151,58,0.3); color: var(--gold-light); border: 1px solid rgba(200,151,58,0.4); }
  .tag.rbm { background: rgba(200,151,58,0.15); color: var(--gold-light); border: 1px solid rgba(200,151,58,0.5); font-weight: 800; }
  .tag.mlf { background: rgba(180,20,20,0.3); color: #f07070; border: 1px solid rgba(220,60,60,0.4); font-weight: 800; }
  .tag.org { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.12); }
  .tag.championship { background: rgba(200,151,58,0.3); color: var(--gold-light); border: 1px solid rgba(200,151,58,0.5); font-weight: 800; }
  .tag.members { background: rgba(139,26,26,0.35); color: #e07070; border: 1px solid rgba(192,57,43,0.5); font-weight: 700; }
  .tag.new-members { background: rgba(32,160,80,0.2); color: #60d090; border: 1px solid rgba(32,160,80,0.4); font-weight: 700; }
  .tag.cashion { background: rgba(155,111,212,0.25); color: #c4a0f0; border: 1px solid rgba(155,111,212,0.4); font-weight: 800; }
  .tag.phoenix { background: rgba(224,90,0,0.2); color: #f0904a; border: 1px solid rgba(224,90,0,0.4); font-weight: 800; }
  .tag.flo { background: rgba(154,80,224,0.25); color: #cc90ff; border: 1px solid rgba(154,80,224,0.5); font-weight: 800; }
  .tag.flo-monday { background: rgba(80,160,224,0.22); color: #90c8f8; border: 1px solid rgba(80,160,224,0.45); font-weight: 800; }
  .tag.thayers { background: rgba(74,138,26,0.3); color: #a0d840; border: 1px solid rgba(74,138,26,0.5); font-weight: 800; }
  .tag.midweek { background: rgba(74,159,212,0.2); color: #7ac5e8; border: 1px solid rgba(74,159,212,0.4); font-weight: 700; }
  .tag.salt-city { background: rgba(26,90,58,0.4); color: #5ad4a0; border: 1px solid rgba(42,138,90,0.5); font-weight: 800; }
  .tag.wednesday-nighter { background: rgba(26,90,58,0.3); color: #5ad4a0; border: 1px solid rgba(42,138,90,0.4); font-weight: 700; }
  .tag.charity { background: rgba(123,45,139,0.3); color: #cc80e0; border: 1px solid rgba(160,64,184,0.4); }
  .tag.fom { background: rgba(96,200,240,0.18); color: #60c8f0; border-color: rgba(96,200,240,0.4); }
  .tag.ett { background: rgba(224,120,32,0.18); color: #e07820; border-color: rgba(224,120,32,0.4); }
  .tag.reynolds { background: rgba(0,90,200,0.4); color: #60b8ff; border: 1px solid rgba(0,140,255,0.6); font-weight: 800; }
  .tag.catt { background: rgba(200,80,20,0.25); color: #f09050; border: 1px solid rgba(200,80,20,0.4); font-weight: 800; }
  .tag.anglers-choice { background: rgba(204,0,0,0.2); color: #ff6666; border: 1px solid rgba(204,0,0,0.4); font-weight: 800; }
  .tag.hs-bass { background: rgba(0,100,200,0.2); color: #60b0ff; border: 1px solid rgba(0,100,200,0.4); font-weight: 700; }

  .event-notes {
    font-size: 13px;
    color: #a09080;
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 8px;
    margin-top: 2px;
    display: block;
  }
  .event-notes ul { list-style: none; padding: 0; }
  .event-notes ul li::before { content: "•"; color: var(--gold); margin-right: 6px; }

  /* TYPE COLORS */
  .type-open .event-date-block { background: var(--bass-green); }
  .type-aoy .event-date-block { background: var(--water); }
  .type-super .event-date-block { background: var(--rust); }
  .type-classic .event-date-block { background: #5a4020; }
  .type-club .event-date-block { background: #2a2a3a; }
  .type-mlf .event-date-block { background: #8b1a1a; }
  .type-mlf-championship .event-date-block { background: #5a0000; border-left: 4px solid var(--gold); }
  .type-cashion .event-date-block { background: #2a1a4a; border-left: 3px solid #9b6fd4; }
  .type-cashion-featured .event-date-block { background: #5a3a10 !important; border-left: 3px solid #c8973a !important; }
  .type-phoenix .event-date-block { background: #1a3a2a; border-left: 3px solid #e05020; }
  .type-flo .event-date-block { background: #1a0a28; border-left: 3px solid #9a50e0; }
  .type-flo-monday .event-date-block { background: #0d1a2a; border-left: 3px solid #50a0e0; }
  .type-thayers .event-date-block { background: #1a3a0a; border-left: 3px solid #a0d840; }
  .type-fom .event-date-block { background: #0a1a2e; border-left: 4px solid #60c8f0; }
  .type-open-event .event-date-block { background: #1a3a1a; }
  .type-midweek .event-date-block { background: #1a2a40; border-left: 3px solid #4a9fd4; }
  .type-thursday-nighter .event-date-block { background: #7a4a10 !important; border-left: 3px solid #e8a030 !important; }
  .type-catt .event-date-block { background: #3a1a0a; border-left: 3px solid #e07830; }
  .type-anglers-choice .event-date-block { background: #3a0a0a; border-left: 3px solid #cc0000; }

  /* FEATURED TOURNAMENT STYLES */
  .type-thayers-featured {
    background: linear-gradient(135deg, #0a1a00 0%, #1a3a00 50%, #0a1a00 100%) !important;
    border-left: 5px solid #a0d840 !important;
    border-top: 1px solid rgba(160,216,64,0.4) !important;
    border-bottom: 1px solid rgba(160,216,64,0.4) !important;
    box-shadow: 0 0 30px rgba(160,216,64,0.25) !important;
    position: relative;
    overflow: visible !important;
  }
  .type-thayers-featured::before {
    content: "🎣 FEATURED TOURNAMENT";
    position: absolute; top: -12px; left: 20px;
    background: #a0d840; color: #0a1a00;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    padding: 2px 10px; border-radius: 4px;
  }
  .type-thayers-featured .event-date-block { background: #2a5a0a; border-left: 3px solid #a0d840; }

  .type-cashion-featured {
    background: linear-gradient(135deg, #1a0a00 0%, #2a1500 50%, #1a0a00 100%) !important;
    border-left: 5px solid #c8973a !important;
    border-top: 1px solid rgba(200,151,58,0.4) !important;
    border-bottom: 1px solid rgba(200,151,58,0.4) !important;
    box-shadow: 0 0 30px rgba(200,151,58,0.3) !important;
    position: relative;
    overflow: visible !important;
  }
  .type-cashion-featured::before {
    content: "⭐ FEATURED TOURNAMENT";
    position: absolute; top: -12px; left: 20px;
    background: #c8973a; color: #0d1117;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    padding: 2px 10px; border-radius: 4px;
  }

  .type-featured-tournament {
    background: linear-gradient(135deg, #1a0a00 0%, #2a1500 50%, #1a0a00 100%) !important;
    border-left: 5px solid #c8973a !important;
    border-top: 1px solid rgba(200,151,58,0.4) !important;
    border-bottom: 1px solid rgba(200,151,58,0.4) !important;
    box-shadow: 0 0 30px rgba(200,151,58,0.3) !important;
    position: relative;
    overflow: visible !important;
  }
  .type-featured-tournament::before {
    content: "⭐ FEATURED TOURNAMENT";
    position: absolute; top: -12px; left: 20px;
    background: #c8973a; color: #0d1117;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    padding: 2px 10px; border-radius: 4px;
  }
  .type-featured-tournament .event-date-block { background: #5a3a10 !important; border-left: 3px solid #c8973a !important; }

  .type-reynolds .event-date-block { background: #002050; border-left: 3px solid #40a0ff; }
  .type-reynolds {
    background: linear-gradient(135deg, #001830 0%, #002a5a 50%, #001830 100%) !important;
    border-left: 5px solid #40a0ff !important;
    position: relative; overflow: visible !important;
  }
  .type-reynolds::before {
    content: "🏆 REYNOLDS BOATS NORTHERN BASS";
    position: absolute; top: -12px; left: 20px;
    background: linear-gradient(90deg, #0060c0, #0090ff);
    color: #fff; font-family: "Barlow Condensed", sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    padding: 2px 10px; border-radius: 4px;
  }

  /* FEATURED SPONSOR (inline on event cards) */
  .featured-sponsor {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,200,80,0.8);
    padding: 4px 0;
  }

  /* EXPANDED DETAIL */
  .event-detail {
    display: none;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 18px 14px calc(90px + 18px);
    font-size: 13px;
    color: #a09080;
    line-height: 1.6;
  }
  .event-card.expanded .event-detail { display: block; }

  /* STATS BAR */
  .stats-bar {
    display: flex;
    gap: 24px;
    padding: 16px 24px;
    background: rgba(200,151,58,0.1);
    border: 1px solid rgba(200,151,58,0.2);
    border-radius: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
  }
  .stats-divider { width: 1px; height: 40px; background: rgba(200,151,58,0.25); flex-shrink: 0; }
  .stats-jump { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
  .stats-jump-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }
  .stats-jump-select {
    background: rgba(200,151,58,0.15);
    border: 1px solid rgba(200,151,58,0.4);
    border-radius: 5px;
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 600; letter-spacing: 1px;
    padding: 5px 10px;
    cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c8973a'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
  }
  .stats-jump-select:focus { outline: none; border-color: var(--gold); }
  .stats-jump-select option { background: #0d1117; color: var(--gold); }

  .stat { text-align: center; }
  .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--gold); line-height: 1; }
  .stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-top: 2px; }

  /* FOOTER */
  .site-footer {
    text-align: center;
    padding: 32px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .event-card.hidden { display: none; }
  .event-card.past-event { opacity: 0.3; transition: opacity 0.3s; }
  .event-card.past-event:hover { opacity: 0.7; }
  .past-badge { position:absolute; top:8px; right:10px; background:#8b3a1a; color:#f5f0e8; font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:700; letter-spacing:2px; padding:2px 8px; border-radius:4px; text-transform:uppercase; pointer-events:none; z-index:2; }

  /* FILTER BAR */
  .filter-bar {
    max-width: 900px;
    margin: 0 auto 18px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .filter-row { display: flex; align-items: center; gap: 10px; }
  .filter-row .filter-select { flex: 1; min-width: 0; }
  .filter-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #8a9ab0; white-space: nowrap;
  }
  .filter-select {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: #e8f0fe;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
    padding: 7px 32px 7px 12px;
    cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ab0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    min-width: 200px;
    transition: border-color 0.2s, background-color 0.2s;
  }
  .filter-select:hover, .filter-select:focus {
    border-color: rgba(74, 138, 200, 0.6);
    background-color: rgba(255,255,255,0.11);
    outline: none;
  }
  .filter-select option { background: #1a2535; color: #e8f0fe; }
  .filter-clear {
    background: rgba(74, 138, 200, 0.15);
    border: 1px solid rgba(74, 138, 200, 0.35);
    border-radius: 6px;
    color: #6ab0e8;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    cursor: pointer;
    display: none;
    transition: background 0.2s;
  }
  .filter-clear:hover { background: rgba(74, 138, 200, 0.28); }
  .filter-clear.visible { display: inline-block; }
  .filter-result-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; color: #6ab0e8; display: none;
  }
  .filter-result-count.visible { display: inline; }

  /* DJC AD BANNER */
  .djc-ad {
    display: block;
    text-decoration: none;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2d4a 0%, #1a5a8a 50%, #0d2d4a 100%);
    border: 3px solid #c8973a;
    box-shadow: 0 4px 24px rgba(200,151,58,0.35);
    animation: adFlash 2s ease-in-out infinite;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .djc-ad:hover { box-shadow: 0 8px 40px rgba(200,151,58,0.8); }

  @keyframes adFlash {
    0%, 100% { border-color: #ffe600; box-shadow: 0 0 20px rgba(255,230,0,0.5), 0 0 40px rgba(255,230,0,0.2); }
    50%       { border-color: #1a7fff; box-shadow: 0 0 28px rgba(26,127,255,0.75), 0 0 55px rgba(26,127,255,0.25); }
  }
  @keyframes titleFlash {
    0%, 100% { color: #ffe600; text-shadow: 0 0 14px rgba(255,230,0,0.6); }
    50%       { color: #4da6ff; text-shadow: 0 0 18px rgba(77,166,255,0.7); }
  }
  @keyframes ctaPulse {
    0%, 100% { background: #ffe600; color: #0d1117; box-shadow: 0 0 12px rgba(255,230,0,0.5); }
    50%       { background: #1a7fff; color: #fff; box-shadow: 0 0 16px rgba(26,127,255,0.65); }
  }

  .djc-ad-inner { display: flex; flex-direction: column; gap: 6px; padding: 10px 14px; }
  .djc-ad-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 3px; line-height: 1;
    animation: titleFlash 2s ease-in-out infinite;
    text-align: center;
  }
  .djc-ad-bottom { display: flex; align-items: center; gap: 14px; }
  .djc-ad-bottom img { width: 90px; height: 50px; object-fit: cover; object-position: center; border-radius: 6px; flex-shrink: 0; }
  .djc-ad-text { flex: 1; display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
  .djc-ad-tagline { position: relative; min-height: 1.4em; }
  .djc-t {
    display: none;
    font-size: 16px; color: rgba(255,200,80,0.95);
    font-style: italic; font-weight: 600; letter-spacing: 0.2px; line-height: 1.3;
    animation: djcFadeIn 0.6s ease;
  }
  .djc-t.active { display: block; }
  @keyframes djcFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .djc-ad-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    background: var(--gold); color: var(--ink);
    padding: 9px 16px; border-radius: 6px;
    white-space: nowrap; align-self: flex-start;
    transition: background 0.2s;
    animation: ctaPulse 2s ease-in-out infinite;
  }
  .djc-ad:hover .djc-ad-cta { background: var(--gold-light); animation: none; }

  @media (min-width: 600px) {
    .djc-ad-title { font-size: 26px; }
    .djc-ad-bottom img { width: 120px; height: 70px; }
  }

  /* VRBO LINK */
  .vrbo-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #40a0ff;
    background: rgba(64,160,255,0.12);
    border: 1px solid rgba(64,160,255,0.3);
    border-radius: 4px;
    padding: 2px 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-left: 6px;
  }
  .vrbo-link:hover {
    background: rgba(64,160,255,0.25);
    color: #80c0ff;
  }

  @keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* RESPONSIVE */
  @media (max-width: 600px) {
    .header-inner { align-items: center; padding: 20px 16px; gap: 12px; }
    .header-text h1 { font-size: clamp(24px, 6vw, 48px); }
    .header-text .subtitle { font-size: 14px; letter-spacing: 3px; }
    .stats-bar { gap: 12px; padding: 12px 16px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 9px; letter-spacing: 1px; }
    .stats-divider { height: 30px; }
    .filter-bar { padding: 0 8px; }
    .filter-row { flex-wrap: wrap; gap: 6px; }
    .filter-select { min-width: 0; width: 100%; font-size: 13px; padding: 8px 32px 8px 10px; }
    .filter-label { font-size: 11px; width: 100%; }
    .main { padding: 16px 12px 48px; }
    .event-card { grid-template-columns: 70px 1fr; }
    .event-date-block { padding: 12px 6px; }
    .event-date-block .day { font-size: 32px; }
    .event-date-block .day-range { font-size: 20px; }
    .event-date-block .month-label { font-size: 10px; letter-spacing: 2px; }
    .event-date-block .weekday { font-size: 9px; }
    .event-body { padding: 10px 12px; gap: 4px; }
    .event-title { font-size: 16px; }
    .event-location { font-size: 12px; flex-wrap: wrap; }
    .event-tags { gap: 4px; }
    .tag { font-size: 9px; padding: 2px 6px; }
    .month-name { font-size: 22px; min-width: 90px; }
    .month-count { font-size: 10px; }
    .vrbo-link { font-size: 10px; padding: 2px 6px; margin-left: 0; margin-top: 4px; }
    .djc-ad-inner { padding: 8px 10px; }
    .djc-ad-title { font-size: 16px; letter-spacing: 2px; }
    .djc-t { font-size: 12px; }
    .djc-ad-cta { font-size: 12px; padding: 7px 12px; }
    .feedback-btn { width: 42px; height: 42px; font-size: 20px; bottom: 14px; right: 14px; }
    .fb-choice-row { flex-direction: column; gap: 8px; }
    .fb-add-type-row { flex-direction: column; gap: 6px; }
    .fb-modal { padding: 18px; }
    .fb-title { font-size: 20px; }
  }

  /* PRINT */
  @media print {
    body { background: white; color: black; }
    .event-detail { display: block; }
    .djc-ad { display: none; }
  }

  /* FEEDBACK BUTTON & MODAL */
  .feedback-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
  .fb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .fb-overlay.open { display: flex; }
  .fb-modal {
    background: #1a2332;
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 24px;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
  }
  .fb-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .fb-choice-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
  }
  .fb-choice-btn {
    flex: 1;
    padding: 14px 10px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--paper);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
  }
  .fb-choice-btn:hover { border-color: var(--gold); background: rgba(200,151,58,0.15); }
  .fb-choice-btn.active { border-color: var(--gold); background: rgba(200,151,58,0.2); color: var(--gold); }
  .fb-section { display: none; }
  .fb-section.active { display: block; }
  .fb-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
  }
  .fb-input, .fb-textarea {
    width: 100%;
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: var(--paper);
    padding: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
  }
  .fb-textarea { resize: vertical; min-height: 80px; }
  .fb-input:focus, .fb-textarea:focus { outline: none; border-color: var(--gold); }
  .fb-submit {
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 4px;
  }
  .fb-submit:hover { background: var(--gold-light); }
  .fb-cancel {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 10px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
  }
  .fb-status {
    margin-top: 10px;
    font-size: 13px;
    color: #60d090;
    display: none;
    text-align: center;
  }
  .fb-status.error { color: #f07070; }
  .fb-add-type-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
  }
  .fb-add-type-btn {
    flex: 1;
    padding: 8px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.6);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
  }
  .fb-add-type-btn:hover { border-color: rgba(255,255,255,0.3); }
  .fb-add-type-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(200,151,58,0.1); }
  .fb-add-sub { display: none; }
  .fb-add-sub.active { display: block; }

  /* Neighbor state pills */
  .neighbor-pills { display: inline-flex; gap: 6px; margin-left: 16px; vertical-align: middle; }
  .neighbor-pill { display: inline-block; padding: 2px 10px; border-radius: 12px; background: rgba(200,151,58,0.15); border: 1px solid rgba(200,151,58,0.5); color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-decoration: none; transition: all 0.2s ease; }
  .neighbor-pill:hover { background: var(--gold); color: var(--ink); }
  .neighbor-pill-label { color: rgba(245,240,232,0.5); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; margin-right: 2px; }
