/* ============================================
   lvideos-html - Pure HTML+CSS Video Site
   Pink theme, mobile-first design
   ============================================ */

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

:root {
  --pink-primary: #ff6b9d;
  --pink-light: #ffc0d9;
  --pink-lighter: #ffe4f0;
  --pink-dark: #e84a7a;
  --pink-deep: #d62f6a;
  --bg-main: #fff5f9;
  --bg-card: #ffffff;
  --text-primary: #2d1b2e;
  --text-secondary: #6b5560;
  --text-muted: #a89ba0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(255, 107, 157, 0.1);
  --shadow-md: 0 4px 16px rgba(255, 107, 157, 0.15);
  --shadow-lg: 0 8px 32px rgba(255, 107, 157, 0.2);
  --header-h: 56px;
  --tabbar-h: 56px;
  --max-width: 480px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:active {
  opacity: 0.7;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

input, button, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ---------- App Container ---------- */
.app-container {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg-main);
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* ---------- Header ---------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: var(--shadow-md);
}

.app-header .header-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.app-header .header-back {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.app-header .header-back:active {
  background: rgba(255, 255, 255, 0.2);
}

.app-header .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-header .header-icon {
  color: #fff;
  font-size: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.app-header .header-icon:active {
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- Search Bar ---------- */
.search-bar {
  padding: 12px 16px;
  background: var(--bg-main);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 0 16px;
  height: 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--pink-lighter);
  transition: border-color 0.2s;
}

.search-input-wrap:focus-within {
  border-color: var(--pink-primary);
}

.search-input-wrap .search-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-right: 8px;
}

.search-input-wrap input {
  flex: 1;
  background: transparent;
  color: var(--text-primary);
  height: 100%;
}

.search-input-wrap input::placeholder {
  color: var(--text-muted);
}

/* ---------- Category Tabs ---------- */
.category-tabs {
  display: flex;
  gap: 8px;
  padding: 8px 16px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.category-tab {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1.5px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.category-tab.is-active {
  background: var(--pink-primary);
  color: #fff;
  border-color: var(--pink-primary);
  box-shadow: var(--shadow-sm);
}

.category-tab:not(.is-active):active {
  background: var(--pink-lighter);
}

/* ---------- Sub-category Pills ---------- */
.sub-category-bar {
  display: flex;
  gap: 6px;
  padding: 0 16px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sub-category-bar::-webkit-scrollbar {
  display: none;
}

.sub-category-pill {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--pink-lighter);
  transition: all 0.2s;
  white-space: nowrap;
}

.sub-category-pill.is-active {
  background: var(--pink-dark);
  color: #fff;
}

/* ---------- Video Grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px 16px;
}

/* ---------- Video Card ---------- */
.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}

.video-card:active {
  transform: scale(0.97);
  box-shadow: var(--shadow-md);
}

.video-card .card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-lighter));
  overflow: hidden;
}

.video-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .card-thumb .thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--pink-primary);
  opacity: 0.5;
}

.video-card .card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(255, 107, 157, 0.9);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.video-card .card-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.video-card .card-body {
  padding: 8px 10px 10px;
}

.video-card .card-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.video-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.video-card .card-meta .card-views {
  display: flex;
  align-items: center;
  gap: 3px;
}

.video-card .card-meta .card-tag {
  color: var(--pink-primary);
  font-weight: 500;
}

/* ---------- Section Title ---------- */
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px;
}

.section-title .title-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-title .title-text::before {
  content: "";
  width: 4px;
  height: 18px;
  background: var(--pink-primary);
  border-radius: 2px;
}

.section-title .title-more {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Banner / Hero ---------- */
.hero-banner {
  margin: 12px 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  padding: 20px 24px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.hero-banner .hero-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-banner .hero-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ---------- Horizontal Scroll Row ---------- */
.scroll-row {
  display: flex;
  gap: 10px;
  padding: 0 16px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.scroll-row .video-card {
  flex-shrink: 0;
  width: 140px;
}

/* ---------- Tab Bar (Bottom Nav) ---------- */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  height: var(--tabbar-h);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -2px 12px rgba(255, 107, 157, 0.1);
  z-index: 100;
  border-top: 1px solid var(--pink-lighter);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  height: 100%;
  color: var(--text-muted);
  transition: color 0.2s;
}

.tab-item.is-active {
  color: var(--pink-primary);
}

.tab-item .tab-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.tab-item .tab-label {
  font-size: 0.68rem;
  font-weight: 500;
}

/* ---------- Content Area (with bottom padding) ---------- */
.content-area {
  padding-bottom: calc(var(--tabbar-h) + 16px);
}

/* ---------- Video Detail Page ---------- */
.video-detail {
  padding-bottom: calc(var(--tabbar-h) + 16px);
}

.video-detail .detail-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-detail .detail-player .play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 107, 157, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
}

.video-detail .detail-info {
  padding: 16px;
}

.video-detail .detail-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.video-detail .detail-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.video-detail .detail-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-detail .detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--pink-lighter);
  margin-bottom: 16px;
}

.detail-actions .action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  min-width: 48px;
}

.detail-actions .action-btn .action-icon {
  font-size: 1.4rem;
}

.detail-actions .action-btn.is-liked {
  color: var(--pink-primary);
}

.video-detail .detail-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--pink-lighter);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--pink-primary);
}

/* ---------- Video Episodes ---------- */
.episode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.episode-item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1.5px solid var(--pink-lighter);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.episode-item.is-active {
  background: var(--pink-primary);
  color: #fff;
  border-color: var(--pink-primary);
}

.episode-item:not(.is-active):active {
  background: var(--pink-lighter);
}

/* ---------- Category Page ---------- */
.category-page .category-hero {
  margin: 12px 16px;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-lighter));
}

.category-page .category-hero .cat-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.category-page .category-hero .cat-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 4px;
}

.category-page .category-hero .cat-count {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ---------- Category Grid (Large cards) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px 16px;
}

.category-grid .cat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s;
  text-align: center;
}

.category-grid .cat-card:active {
  transform: scale(0.96);
}

.category-grid .cat-card .cat-card-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--pink-lighter), var(--pink-light));
}

.category-grid .cat-card .cat-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 8px 2px;
}

.category-grid .cat-card .cat-card-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0 8px 10px;
}

/* ---------- Favorites Page ---------- */
.favorites-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.fav-item {
  display: flex;
  gap: 12px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s;
}

.fav-item:active {
  transform: scale(0.98);
}

.fav-item .fav-thumb {
  width: 120px;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-lighter));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--pink-primary);
  opacity: 0.5;
}

.fav-item .fav-info {
  flex: 1;
  padding: 10px 12px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fav-item .fav-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.fav-item .fav-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.fav-item .fav-remove {
  align-self: flex-start;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ---------- Empty State ---------- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.empty-state .empty-icon {
  font-size: 3rem;
  color: var(--pink-light);
  margin-bottom: 16px;
}

.empty-state .empty-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.empty-state .empty-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ---------- Loading Skeleton ---------- */
.skeleton-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.skeleton-card .sk-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(90deg, var(--pink-lighter) 25%, var(--pink-light) 50%, var(--pink-lighter) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-card .sk-line {
  height: 10px;
  margin: 8px 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pink-lighter) 25%, var(--pink-light) 50%, var(--pink-lighter) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-card .sk-line:last-child {
  width: 60%;
  margin-bottom: 10px;
}

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

/* ---------- About / Settings Page ---------- */
.about-page {
  padding: 16px;
}

.about-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.about-section .about-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.about-section .about-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.about-section .about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--pink-lighter);
}

.about-section .about-row:last-child {
  border-bottom: none;
}

.about-section .about-row .row-label {
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-section .about-row .row-label .row-icon {
  font-size: 1.2rem;
  color: var(--pink-primary);
}

.about-section .about-row .row-value {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-logo {
  text-align: center;
  padding: 24px 0 16px;
}

.about-logo .logo-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.about-logo .logo-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-primary);
}

.about-logo .logo-version {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-pink { color: var(--pink-primary); }
.text-muted { color: var(--text-muted); }
.hidden { display: none !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: var(--pink-lighter);
  margin: 12px 16px;
}

/* ---------- Tag / Badge ---------- */
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--pink-lighter);
  color: var(--pink-deep);
}

.tag.tag-hot {
  background: var(--pink-primary);
  color: #fff;
}

.tag.tag-new {
  background: #ff4757;
  color: #fff;
}

/* ---------- Responsive: Tablet ---------- */
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --max-width: 100%;
  }
  
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .scroll-row .video-card {
    width: 160px;
  }
}

/* ---------- Responsive: Desktop ---------- */
@media (min-width: 769px) {
  :root {
    --max-width: 720px;
  }
  
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .scroll-row .video-card {
    width: 180px;
  }
  
  .video-card .card-title {
    font-size: 0.9rem;
  }
}

/* ---------- Print-friendly ---------- */
@media print {
  .tab-bar, .app-header, .search-bar {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
}

/* ---------- Focus visible for accessibility ---------- */
a:focus-visible,
input:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 2px;
}

/* ---------- Scrollbar styling (desktop) ---------- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--pink-lighter);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-primary);
}

/* ---------- Profile Card (About page) ---------- */
.profile-card {
  text-align: center;
  padding: 24px 16px 20px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-lighter));
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.profile-card .profile-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.profile-card .profile-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 4px;
}

.profile-card .profile-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ---------- Stats Row (About page) ---------- */
.stats-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.stats-row .stat-box {
  flex: 1;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stats-row .stat-box .stat-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-primary);
  margin-bottom: 2px;
}

.stats-row .stat-box .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Menu List (About page) ---------- */
.menu-list {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--pink-lighter);
  transition: background 0.15s;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:active {
  background: var(--pink-lighter);
}

.menu-item .menu-icon {
  font-size: 1.3rem;
  width: 28px;
  text-align: center;
}

.menu-item .menu-text {
  flex: 1;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.menu-item .menu-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ---------- About Info (footer) ---------- */
.about-info {
  text-align: center;
  padding: 20px 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.about-info .about-copyright {
  margin-top: 8px;
  font-size: 0.75rem;
  opacity: 0.7;
}
