/* ========== Reset & Base ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0f0f1a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --accent-gold: #e2b714;
  --accent-red: #e74c3c;
  --text-primary: #f0e6d3;
  --text-secondary: #8a8a9a;
  --bg-reading: #141422;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Prevent double-tap zoom on interactive elements */
button, a, input, .novel-card, .category-tab {
  touch-action: manipulation;
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 183, 20, 0.08);
  padding: 0 24px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.search-box {
  position: relative;
  width: 280px;
}

.search-box input {
  width: 100%;
  padding: 8px 16px 8px 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.search-box input::placeholder {
  color: var(--text-secondary);
}

.search-box input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(226, 183, 20, 0.1);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========== Hero Section ========== */
.hero {
  max-width: 1280px;
  margin: 24px auto;
  padding: 0 24px;
}

.hero-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: transform 0.4s var(--transition-smooth);
}

.hero-banner:hover {
  transform: scale(1.005);
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 15, 26, 0.95) 0%, rgba(15, 15, 26, 0.6) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 48px;
}

.hero-content {
  max-width: 480px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #fff;
}

.hero-desc {
  font-size: 15px;
  color: rgba(240, 230, 211, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--accent-gold);
  color: #0f0f1a;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.btn-read:hover {
  background: #f0c830;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 183, 20, 0.3);
}

/* ========== Category Tabs ========== */
.categories {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.category-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-tab {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

.category-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s var(--transition-smooth);
}

.category-tab:hover {
  color: var(--text-primary);
}

.category-tab.active {
  color: var(--accent-gold);
}

.category-tab.active::after {
  width: 60%;
}

/* ========== Novel Grid ========== */
.novel-section {
  max-width: 1280px;
  margin: 24px auto;
  padding: 0 24px 48px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.novel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.novel-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.novel-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(226, 183, 20, 0.1);
}

.novel-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.novel-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.novel-card:hover .novel-cover {
  transform: scale(1.05);
}

.novel-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.novel-rank.top {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.novel-info {
  padding: 14px;
}

.novel-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.novel-author {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.novel-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.novel-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(226, 183, 20, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(226, 183, 20, 0.15);
}

.novel-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-secondary);
}

.novel-stats span {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ========== Reading View ========== */
.reading-view {
  display: none;
  min-height: 100vh;
  background: var(--bg-reading);
}

.reading-view.active {
  display: block;
}

.reading-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 20, 34, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px;
}

.reading-header-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.btn-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-back:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.reading-book-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reading-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-control {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-control:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Reading Content */
.reading-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.reading-chapter-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.reading-text {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(240, 230, 211, 0.9);
  text-align: justify;
}

.reading-text p {
  margin-bottom: 1.5em;
  text-indent: 2em;
}

/* Chapter Navigation */
.chapter-nav {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-chapter {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-chapter:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
}

.btn-chapter:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-chapter.primary {
  background: var(--accent-gold);
  color: #0f0f1a;
  border-color: var(--accent-gold);
  font-weight: 600;
}

.btn-chapter.primary:hover {
  background: #f0c830;
}

/* ========== Chapter List Panel ========== */
.chapter-list-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.chapter-list-panel.active {
  display: flex;
}

.chapter-list-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.chapter-list-drawer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  max-height: 70vh;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chapter-list-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chapter-list-header h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  color: var(--text-primary);
}

.btn-close-list {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-close-list:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.chapter-list-body {
  overflow-y: auto;
  padding: 8px 0;
  flex: 1;
}

.chapter-list-item {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.chapter-list-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.chapter-list-item.active {
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
  background: rgba(226, 183, 20, 0.05);
}

/* ========== Home View Transition ========== */
.home-view {
  transition: opacity 0.3s ease;
}

.home-view.hidden {
  display: none;
}

.reading-view {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========== Responsive — Tablet ========== */
@media (max-width: 1024px) {
  .novel-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 18px;
  }
}

/* ========== Responsive — Mobile (<=768px) ========== */
@media (max-width: 768px) {
  /* --- Header --- */
  .site-header {
    padding: 0 16px;
  }

  .header-inner {
    height: 56px;
    gap: 12px;
  }

  .logo-text {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .logo-icon {
    font-size: 24px;
  }

  .search-box {
    width: auto;
    flex: 1;
    min-width: 0;
    max-width: 220px;
  }

  .search-box input {
    padding: 7px 14px 7px 34px;
    font-size: 13px;
  }

  /* --- Hero --- */
  .hero {
    margin: 16px auto;
    padding: 0 16px;
  }

  .hero-banner {
    height: 220px;
    border-radius: 12px;
  }

  .hero-overlay {
    padding: 20px 24px;
    background: linear-gradient(to right, rgba(15, 15, 26, 0.95) 0%, rgba(15, 15, 26, 0.7) 60%, rgba(15, 15, 26, 0.3) 100%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    font-size: 11px;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
  }

  .hero-meta {
    font-size: 12px;
    gap: 12px;
    margin-bottom: 16px;
  }

  .btn-read {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 6px;
  }

  /* --- Category Tabs --- */
  .categories {
    margin: 20px auto 0;
    padding: 0 16px;
  }

  .category-tabs {
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tab {
    padding: 10px 14px;
    font-size: 13px;
    flex-shrink: 0;
  }

  /* --- Novel Grid --- */
  .novel-section {
    padding: 0 16px 32px;
    margin: 16px auto;
  }

  .section-title {
    font-size: 17px;
  }

  .novel-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .novel-card {
    border-radius: 10px;
  }

  /* Disable hover lift on touch */
  .novel-card:hover {
    transform: none;
    box-shadow: none;
  }

  .novel-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
  }

  .novel-info {
    padding: 10px;
  }

  .novel-title {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .novel-author {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .novel-tags {
    gap: 4px;
  }

  .novel-tag {
    font-size: 10px;
    padding: 1px 6px;
  }

  .novel-stats {
    font-size: 10px;
    gap: 8px;
  }

  /* --- Reading View --- */
  .reading-header {
    padding: 0 12px;
  }

  .reading-header-inner {
    height: 50px;
    gap: 8px;
  }

  .btn-back {
    padding: 6px 10px;
    font-size: 13px;
    min-height: 36px;
    min-width: 36px;
  }

  .reading-book-title {
    font-size: 14px;
    max-width: 120px;
  }

  .reading-controls {
    gap: 6px;
  }

  .btn-control {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .reading-body {
    padding: 24px 16px 60px;
  }

  .reading-chapter-title {
    font-size: 20px;
    margin-bottom: 28px;
    padding-bottom: 16px;
  }

  .reading-text {
    font-size: 16px;
    line-height: 1.85;
  }

  .reading-text p {
    margin-bottom: 1.3em;
  }

  /* Chapter Nav */
  .chapter-nav {
    padding: 20px 16px;
    gap: 10px;
  }

  .btn-chapter {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 44px;
    flex: 1;
    text-align: center;
  }

  /* Chapter List Panel — bottom drawer on mobile */
  .chapter-list-drawer {
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px 16px 0 0;
  }

  .chapter-list-header {
    padding: 16px 20px;
    position: relative;
  }

  .chapter-list-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
  }

  .chapter-list-header h3 {
    font-size: 16px;
  }

  .chapter-list-item {
    padding: 14px 20px;
    font-size: 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 24px 16px;
    font-size: 11px;
  }
}

/* ========== Responsive — Small Mobile (<=480px) ========== */
@media (max-width: 480px) {
  .header-inner {
    height: 50px;
  }

  .logo-text {
    font-size: 16px;
  }

  .search-box {
    max-width: 180px;
  }

  .search-box input {
    padding: 6px 12px 6px 30px;
    font-size: 12px;
  }

  .search-icon {
    font-size: 12px;
    left: 10px;
  }

  /* Hero compact */
  .hero-banner {
    height: 180px;
    border-radius: 10px;
  }

  .hero-overlay {
    padding: 16px 18px;
  }

  .hero-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .hero-desc {
    font-size: 12px;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  }

  .hero-meta {
    display: none;
  }

  .btn-read {
    padding: 8px 20px;
    font-size: 13px;
  }

  /* 2-column grid on small screens */
  .novel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .novel-info {
    padding: 8px;
  }

  .novel-title {
    font-size: 12px;
  }

  .novel-author {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .novel-tags {
    display: none;
  }

  .novel-stats {
    font-size: 9px;
    gap: 6px;
  }

  .novel-rank {
    font-size: 10px;
    padding: 1px 6px;
    top: 6px;
    left: 6px;
  }

  /* Category tabs tighter */
  .category-tab {
    padding: 8px 12px;
    font-size: 12px;
  }

  /* Reading view tighter */
  .reading-body {
    padding: 20px 14px 50px;
  }

  .reading-chapter-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .reading-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .reading-book-title {
    max-width: 90px;
    font-size: 13px;
  }

  .btn-back {
    font-size: 12px;
    padding: 5px 8px;
  }

  .btn-chapter {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ========== Responsive — Extra Small (<=360px) ========== */
@media (max-width: 360px) {
  .hero-banner {
    height: 160px;
  }

  .hero-title {
    font-size: 16px;
  }

  .hero-desc {
    display: none;
  }

  .novel-grid {
    gap: 8px;
  }

  .novel-info {
    padding: 6px;
  }

  .novel-title {
    font-size: 11px;
  }

  .reading-text {
    font-size: 15px;
  }
}

/* ========== Touch & Accessibility ========== */
@media (hover: none) and (pointer: coarse) {
  /* Increase touch targets on touch devices */
  .category-tab {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .btn-control {
    min-width: 44px;
    min-height: 44px;
  }

  .btn-back {
    min-height: 44px;
  }

  .chapter-list-item {
    min-height: 48px;
  }

  /* Remove hover effects on touch */
  .novel-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--bg-card);
  }

  .novel-card:hover .novel-cover {
    transform: none;
  }

  .btn-read:hover {
    transform: none;
    box-shadow: none;
  }

  /* Active state feedback */
  .novel-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
  }

  .btn-read:active {
    transform: scale(0.96);
  }

  .btn-chapter:active {
    transform: scale(0.96);
  }

  .category-tab:active {
    background: rgba(255, 255, 255, 0.04);
  }
}

/* ========== Safe Area (notch devices) ========== */
@supports (padding: env(safe-area-inset-bottom)) {
  .reading-header {
    padding-top: env(safe-area-inset-top);
  }

  .chapter-nav {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .chapter-list-drawer {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .site-footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* ========== Loading Skeleton ========== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========== Footer ========== */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  color: var(--text-secondary);
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
