@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap");

:root {
  --paper: #F8F1E7;
  --ink: #2C2018;
  --ink-muted: #6A5547;
  --red: #9F1D21;
  --gold: #C78B2A;
  --jade: #2A7D5F;
  --line: rgba(75, 48, 31, 0.18);
  --card: #FFF8EE;
  --shadow: 0 8px 24px rgba(56, 31, 17, 0.1);
  --red-deep: #7E1317;
  --gold-soft: #DFC18A;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.v2 {
  background-color: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.1px;
  background-image:
    linear-gradient(135deg, rgba(159, 29, 33, 0.022) 0%, rgba(199, 139, 42, 0.018) 42%, rgba(42, 125, 95, 0.015) 100%),
    radial-gradient(circle at 14% 12%, rgba(159, 29, 33, 0.028) 0 120px, transparent 128px),
    radial-gradient(circle at 88% 18%, rgba(199, 139, 42, 0.03) 0 150px, transparent 160px),
    repeating-linear-gradient(45deg, rgba(104, 70, 45, 0.018) 0 1px, transparent 1px 14px);
}

h1, h2, h3, h4, h5, h6,
.v2-title {
  font-family: "Playfair Display", "Merriweather", Georgia, serif;
  letter-spacing: 0.2px;
}

a {
  color: var(--ink);
  text-decoration: none;
}

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

.v2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 241, 231, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.v2-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.v2-brand img {
  height: 36px;
  width: auto;
}

.v2-nav {
  display: flex;
  gap: 18px;
  font-weight: 500;
}

.v2-nav a {
  padding: 6px 0;
  position: relative;
}

.v2-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 0.2s ease;
}

.v2-nav a:hover::after,
.v2-nav a.is-active::after {
  width: 100%;
}

.v2-search {
  position: relative;
  min-width: 220px;
}

.v2-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 38px 8px 14px;
  background: #fff;
}

.v2-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--ink-muted);
}

.v2-btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.v2-btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-color: rgba(126, 19, 23, 0.4);
  color: #fff;
  box-shadow: 0 6px 14px rgba(126, 19, 23, 0.24);
}

.v2-btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.v2-shell {
  display: flex;
  gap: 14px;
  padding: 18px 10px 30px;
}

.v2-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  margin-bottom: 12px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.v2-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.v2-topbar-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.v2-topbar-date {
  font-weight: 600;
}

.v2-topbar-lunar {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.v2-topbar-right {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.v2-hero {
  position: relative;
}

.v2-hero-card {
  overflow: hidden;
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  padding: 16px;
}

.v2-hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.v2-hero-title {
  font-size: 2rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-hero-title a {
  color: inherit;
}

.v2-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-hero-summary {
  margin: 0;
  color: var(--ink-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 166, 120, 0.2), rgba(240, 140, 0, 0.12));
  min-height: 220px;
}

.v2-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", "Merriweather", Georgia, serif;
  color: rgba(33, 37, 41, 0.6);
  font-size: 1.3rem;
}

.v2-mini-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-mini-item {
  padding-bottom: 7px;
  border-bottom: 1px dashed var(--line);
}

.v2-mini-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.v2-mini-title {
  font-weight: 600;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.v2-mini-time {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

.v2-mini-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(201, 42, 42, 0.1);
  border: 1px solid rgba(201, 42, 42, 0.25);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
}

.v2-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.v2-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.v2-chip-remove {
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.v2-explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-explore-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.9rem;
}

.v2-explore-chip small {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.v2-notify-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.v2-event-summary {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-content {
  flex: 1 1 auto;
  min-width: 0;
}

.v2-block.mb-4 {
  margin-bottom: 1.1rem !important;
}

.v2-card.mb-3 {
  margin-bottom: 0.9rem !important;
}

.v2-sidebar {
  flex: 0 0 328px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.v2-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(159, 29, 33, 0.65), rgba(199, 139, 42, 0.55), rgba(42, 125, 95, 0.45));
  pointer-events: none;
}

.v2-card--lunar {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.v2-card--lunar::before {
  display: none;
}

.v2-card--lunar .v2-card-body {
  padding: 0;
}

.v2-event-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-event-card .v2-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.v2-card-body {
  padding: 14px 16px;
}

.v2-sidebar .v2-card-body {
  padding: 14px 16px;
}

.v2-card-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: rgba(199, 139, 42, 0.08);
}

.v2-badge.is-gold { color: var(--gold); border-color: rgba(240, 140, 0, 0.4); }
.v2-badge.is-jade { color: var(--jade); border-color: rgba(12, 166, 120, 0.4); }
.v2-badge.is-red { color: var(--red); border-color: rgba(201, 42, 42, 0.4); }

.v2-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-muted);
  background: rgba(0, 0, 0, 0.02);
}

.v2-tag-count {
  font-size: 0.7rem;
  color: var(--ink-muted);
  opacity: 0.8;
}

.v2-trending-block + .v2-trending-block {
  margin-top: 12px;
}

.v2-trending-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.v2-trending-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-trending-item {
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}

.v2-trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.v2-trending-title {
  font-weight: 600;
  color: var(--ink);
  display: block;
}

.v2-trending-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.v2-score-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(201, 42, 42, 0.12);
  border: 1px solid rgba(201, 42, 42, 0.3);
  color: var(--red);
  font-weight: 600;
  font-size: 0.75rem;
}

.v2-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.v2-event-grid--poster {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 16px;
}

.v2-event-grid--mixed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-event-card--poster {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.v2-event-card--poster .v2-event-media {
  aspect-ratio: 4 / 3;
}

.v2-event-card--poster .v2-card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 13px 14px 14px;
}

.v2-event-card--poster .v2-card-title {
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 0;
  -webkit-line-clamp: 2;
}

.v2-event-card--poster .v2-event-meta {
  margin: 0;
  gap: 5px;
  font-size: 0.86rem;
}

.v2-event-card--poster .v2-event-stats {
  margin-top: 1px;
  gap: 6px;
}

.v2-event-card--poster .v2-info-pill {
  font-size: 0.72rem;
  padding: 2px 8px;
}

.v2-event-card--poster .v2-tag {
  font-size: 0.72rem;
  padding: 2px 8px;
}

.v2-event-card--poster .v2-event-tags {
  margin-top: auto;
  padding-top: 4px;
}

.v2-poster-summary {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-info-pill--hot {
  border-color: rgba(201, 42, 42, 0.28);
  background: rgba(201, 42, 42, 0.1);
  color: var(--red);
}

.v2-discover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.v2-discover-grid .v2-card {
  height: 100%;
}

.v2-event-card--wide {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
}

.v2-event-card--wide .v2-card-body {
  padding: 14px 16px 14px;
}

.v2-event-card--wide .v2-card-title {
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 7px;
}

.v2-event-card--list {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  border-radius: 14px;
}

.v2-event-card--list .v2-card-body {
  padding: 10px 12px;
}

.v2-event-card--list .v2-card-title {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 4px;
}

.v2-event-card--list .v2-event-meta {
  margin: 2px 0 0;
  gap: 6px;
  font-size: 0.84rem;
}

.v2-event-card--list .v2-time-pill {
  padding: 2px 8px;
  font-size: 0.7rem;
}

.v2-event-card--list .v2-badge {
  padding: 2px 8px;
  font-size: 0.72rem;
}

.v2-event-card--list .v2-event-stats {
  margin-top: 6px;
  gap: 6px;
}

.v2-event-card--list .v2-info-pill {
  font-size: 0.72rem;
  padding: 2px 8px;
}

.v2-event-card--list .v2-event-tags {
  margin-top: 6px;
}

.v2-event-card--list .v2-tag {
  padding: 2px 8px;
  font-size: 0.74rem;
}

.v2-event-card .v2-event-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(159, 29, 33, 0.15), rgba(199, 139, 42, 0.13), rgba(42, 125, 95, 0.11));
}

.v2-event-card--wide .v2-event-media {
  aspect-ratio: auto;
  min-height: 100%;
}

.v2-event-card--list .v2-event-media {
  aspect-ratio: 4 / 3;
}

.v2-event-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", "Merriweather", Georgia, serif;
  color: rgba(33, 37, 41, 0.6);
  font-size: 1.1rem;
}

.v2-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.v2-gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.v2-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.v2-gallery-item:hover img {
  transform: scale(1.04);
}

.v2-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.v2-lightbox[hidden] {
  display: none;
}

.v2-lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 96vw;
  max-height: 90vh;
}

.v2-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.v2-lightbox-nav,
.v2-lightbox-close {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.v2-lightbox-close {
  top: -10px;
  right: -10px;
}

.v2-lightbox-nav.prev {
  left: -16px;
}

.v2-lightbox-nav.next {
  right: -16px;
}

.v2-lightbox-nav:disabled {
  opacity: 0.5;
}

body.v2-lightbox-open {
  overflow: hidden;
}

.v2-event-card a {
  color: var(--ink);
}

.v2-event-card a:hover {
  color: var(--red);
}

.v2-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 8px 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.v2-time-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(42, 125, 95, 0.35);
  background: rgba(42, 125, 95, 0.11);
  color: var(--jade);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
}

.v2-event-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 7px;
}

.v2-info-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.v2-info-pill.is-muted {
  background: rgba(0, 0, 0, 0.03);
  color: var(--ink-muted);
}

.v2-section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 8px 0 12px;
}

.v2-tabs {
  display: inline-flex;
  gap: 10px;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.v2-tab {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink-muted);
}

.v2-tab.is-active {
  background: rgba(159, 29, 33, 0.14);
  color: var(--red);
}

.v2-hot-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.v2-pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.v2-pill.is-active {
  border-color: rgba(159, 29, 33, 0.38);
  background: rgba(159, 29, 33, 0.12);
  color: var(--red);
}

.v2-filter {
  background: linear-gradient(135deg, rgba(159, 29, 33, 0.045), rgba(199, 139, 42, 0.04));
}

.v2-filter-body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-filter-row {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 1.1fr 1.1fr 0.85fr;
  gap: 10px;
  align-items: end;
}

.v2-filter-row--more {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.v2-filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.v2-filter-group[hidden] {
  display: none !important;
}

.v2-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.v2-input,
.v2-select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  background: #fff;
  color: var(--ink);
}

.v2-input:focus,
.v2-select:focus {
  outline: none;
  border-color: rgba(201, 42, 42, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 42, 42, 0.08);
}

.v2-seg {
  display: inline-flex;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}

.v2-seg button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink-muted);
}

.v2-seg button.is-active {
  background: rgba(159, 29, 33, 0.14);
  color: var(--red);
}

.v2-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.v2-filter-more {
  border-top: 1px dashed var(--line);
  padding-top: 8px;
}

.v2-filter-more summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-muted);
  list-style: none;
}

.v2-filter-more summary::-webkit-details-marker {
  display: none;
}

.v2-filter-inline {
  justify-content: flex-end;
  height: 100%;
}

.v2-link-muted,
.v2-muted {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.v2-link-muted:hover {
  color: var(--red);
}

.v2-date-strip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.v2-date-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px;
}

.v2-date-rail::-webkit-scrollbar { display: none; }

.v2-date-chip {
  min-width: 92px;
  text-align: center;
  padding: 7px 9px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.v2-date-week {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.v2-date-solar {
  font-weight: 600;
}

.v2-date-lunar {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.v2-date-chip.is-active {
  background: rgba(159, 29, 33, 0.11);
  border-color: rgba(159, 29, 33, 0.4);
  color: var(--red);
}

.v2-date-chip.is-highlight {
  border-color: rgba(159, 29, 33, 0.4);
  color: var(--red);
}

.v2-date-chip.is-highlight::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(159, 29, 33, 0.18);
}

.v2-scroll-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  width: 32px;
  height: 32px;
}

.v2-scroll-btn:disabled {
  opacity: 0.4;
}

.v2-empty {
  text-align: center;
  padding: 24px;
  color: var(--ink-muted);
}

.v2-footer {
  border-top: 1px solid var(--line);
  padding: 18px 0 28px;
  color: var(--ink-muted);
}

.v2-footer a {
  color: var(--ink);
}

.v2-quote {
  font-size: 1rem;
  font-style: italic;
}

.v2-widget-title {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-widget-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  box-shadow: 0 0 0 2px rgba(199, 139, 42, 0.2);
}

.v2-lunar-meta {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 4px;
}

.v2-lunar-today {
  position: relative;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(140deg, rgba(159, 29, 33, 0.2), rgba(199, 139, 42, 0.16), rgba(42, 125, 95, 0.14));
  overflow: hidden;
}

.v2-lunar-today::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -26px;
  top: -34px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.v2-lunar-shell {
  border-radius: 13px;
  border: none;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.97), rgba(255, 248, 236, 0.96));
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.v2-lunar-today:hover .v2-lunar-shell {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(76, 38, 22, 0.11);
}

.v2-lunar-left {
  background: linear-gradient(170deg, rgba(159, 29, 33, 0.92), rgba(126, 19, 23, 0.96));
  color: #fff;
  padding: 10px 10px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.v2-lunar-solar-k,
.v2-lunar-main-k {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

.v2-lunar-solar-k {
  opacity: 0.84;
  margin-bottom: 1px;
}

.v2-lunar-weekday {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
  opacity: 0.95;
}

.v2-lunar-day {
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

.v2-lunar-day--small {
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 600;
}

.v2-lunar-month {
  font-size: 0.74rem;
  opacity: 0.9;
  letter-spacing: 0.03em;
}

.v2-lunar-right {
  padding: 11px 12px 12px;
}

.v2-lunar-main-k {
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.v2-lunar-main {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.v2-lunar-code {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(159, 29, 33, 0.18);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.78rem;
  color: var(--red-deep);
  background: rgba(159, 29, 33, 0.08);
}

.v2-lunar-meta-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.v2-lunar-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-height: 56px;
  border-radius: 11px;
  border: 1px solid rgba(159, 29, 33, 0.2);
  background: rgba(255, 255, 255, 0.74);
  padding: 7px 9px;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.v2-lunar-pill-k {
  display: inline-flex;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(106, 85, 71, 0.88);
}

.v2-lunar-pill-v {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
}

.v2-lunar-pill.is-term {
  border-color: rgba(42, 125, 95, 0.32);
  background: rgba(42, 125, 95, 0.08);
}

.v2-lunar-engine {
  margin-top: 7px;
  font-size: 0.74rem;
  color: var(--ink-muted);
  opacity: 0.9;
}

.v2-copy-btn {
  border: 1px dashed var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.v2-alert {
  margin: 10px 0 12px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.v2-alert.is-success {
  border-color: rgba(12, 166, 120, 0.35);
  color: var(--jade);
  background: rgba(12, 166, 120, 0.08);
}

.v2-alert.is-error {
  border-color: rgba(201, 42, 42, 0.35);
  color: var(--red);
  background: rgba(201, 42, 42, 0.08);
}

.v2-notify-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.v2-notify-row .v2-input {
  flex: 1 1 auto;
}

.v2-notify-note {
  margin-top: 8px;
}

.v2-follow-panel {
  display: grid;
  gap: 10px;
}

.v2-follow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.v2-follow-actions .v2-btn {
  min-height: 38px;
}

.v2-follow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(240, 140, 0, 0.14);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.v2-follow-actions-secondary .v2-follow-pill {
  background: rgba(12, 166, 120, 0.14);
}

.v2-follow-status {
  margin: 0;
}

.v2-follow-status.is-success {
  border-color: rgba(12, 166, 120, 0.34);
  color: var(--jade);
  background: rgba(12, 166, 120, 0.09);
}

.v2-follow-status.is-error {
  border-color: rgba(201, 42, 42, 0.34);
  color: var(--red);
  background: rgba(201, 42, 42, 0.1);
}

.v2-textarea {
  min-height: 120px;
  resize: vertical;
}

.v2-feedback-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}

.v2-feedback-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.v2-feedback-actions {
  margin-top: 6px;
}

.v2-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

@media (max-width: 992px) {
  .v2-shell { flex-direction: column; }
  .v2-sidebar { flex: 1 1 auto; order: 2; }
  .v2-hero-grid { grid-template-columns: 1fr; }
  .v2-topbar { flex-direction: column; align-items: flex-start; }
  .v2-filter-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v2-filter-row--more { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-follow-actions .v2-btn,
  .v2-follow-pill { width: 100%; }
  .v2-lightbox-nav.prev { left: 6px; }
  .v2-lightbox-nav.next { right: 6px; }
  .v2-event-grid--poster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .v2-nav { display: none; }
  .v2-search { min-width: 160px; }
  .v2-filter-row { grid-template-columns: minmax(0, 1fr); }
  .v2-filter-actions { justify-content: flex-start; }
  .v2-filter-row--more { grid-template-columns: minmax(0, 1fr); }
  .v2-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-hero-title { font-size: 1.6rem; }
  .v2-hero-grid { padding: 14px; }
  .v2-sidebar { gap: 10px; }
  .v2-event-card--wide,
  .v2-event-card--list {
    grid-template-columns: 1fr;
  }
  .v2-event-grid--poster {
    grid-template-columns: minmax(0, 1fr);
  }
  .v2-discover-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .v2-event-card--list .v2-event-media {
    aspect-ratio: 16 / 9;
  }
  .v2-notify-row {
    flex-direction: column;
    align-items: stretch;
  }
  .v2-follow-actions {
    align-items: stretch;
  }
  .v2-feedback-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .v2-lunar-shell {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .v2-lunar-meta-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .v2-lunar-day {
    font-size: 1.7rem;
  }
}
