/*
Theme Name: BPV Cinema
Theme URI: https://www.baiplayer.com
Description: ธีมเว็บหนัง/วิดีโอ สำหรับใช้กับ Bai Player Video Plugin — รองรับ YouTube, Vimeo, MP4 · ดีไซน์สไตล์ Dark Cinema
Version: 1.0.0
Author: Bai Player
Author URI: https://www.baiplayer.com
License: Proprietary
Text Domain: bpv-cinema
Tags: dark, video, cinema, one-column, two-columns, custom-header, custom-menu, featured-images, full-width-template
*/

/* ════════════════════════════════════
   CSS VARIABLES
════════════════════════════════════ */
:root {
  --bg:        #0a0a0f;
  --bg2:       #13131a;
  --bg3:       #1c1c26;
  --border:    #2a2a3a;
  --accent:    #ff0066;
  --accent2:   #764ba2;
  --text:      #e8e8f0;
  --muted:     #888899;
  --link:      #7eb8ff;
  --radius:    10px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(0,0,0,.5);
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ════════════════════════════════════
   RESET & BASE
════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--link); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

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

/* ════════════════════════════════════
   SCROLLBAR
════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ════════════════════════════════════
   HEADER / NAV
════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-logo:hover { opacity: .85; }

/* Search */
.header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.header-search input[type="search"] {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 16px 8px 40px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.header-search input[type="search"]:focus { border-color: var(--accent); }
.header-search .search-icon {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

/* Nav */
#site-nav { margin-left: auto; }
.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  background: var(--bg3);
  color: var(--text);
}
.nav-menu > li.menu-item-has-children { position: relative; }
.nav-menu > li.menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 180px;
  box-shadow: var(--shadow);
  list-style: none;
  z-index: 100;
}
.nav-menu > li.menu-item-has-children:hover > .sub-menu { display: block; }
.nav-menu .sub-menu a {
  display: block;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: var(--radius-sm);
  font-size: 13px;
}
.nav-menu .sub-menu a:hover { background: var(--bg3); color: var(--text); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  margin-left: auto;
}

/* ════════════════════════════════════
   HERO SLIDER (หน้าแรก)
════════════════════════════════════ */
.bpv-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 520px;
  overflow: hidden;
  background: #000;
}
.bpv-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.bpv-hero-slide.active { opacity: 1; }
.bpv-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45);
}
.bpv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.8) 40%, transparent 100%),
              linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.bpv-hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  right: 40%;
}
.bpv-hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.bpv-hero-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}
.bpv-hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bpv-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}
.bpv-hero-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,102,.4);
}
.bpv-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.bpv-hero-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.bpv-hero-dot.active { background: var(--accent); transform: scale(1.3); }

/* ════════════════════════════════════
   SITE WRAPPER & LAYOUT
════════════════════════════════════ */
#site-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

/* ════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════ */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: linear-gradient(to bottom, var(--accent), var(--accent2));
  border-radius: 2px;
}
.section-more {
  color: var(--link);
  font-size: 13px;
  font-weight: 500;
}
.section-more:hover { color: var(--accent); }

/* ════════════════════════════════════
   VIDEO GRID
════════════════════════════════════ */
.bpv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.bpv-grid.bpv-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

/* ════════════════════════════════════
   VIDEO CARD
════════════════════════════════════ */
.bpv-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.bpv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
}
.bpv-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg3);
  overflow: hidden;
}
.bpv-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.bpv-card:hover .bpv-card-thumb img { transform: scale(1.05); }

.bpv-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.bpv-card:hover .bpv-card-overlay { opacity: 1; }
.bpv-card-overlay .play-icon {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,0,102,.5);
}
.bpv-card-overlay .play-icon svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }

/* Duration badge */
.bpv-card-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,.8);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Type badge */
.bpv-card-type {
  position: absolute;
  top: 8px; left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bpv-type-youtube { background: #ff0000; color: #fff; }
.bpv-type-vimeo   { background: #1ab7ea; color: #fff; }
.bpv-type-mp4     { background: #059669; color: #fff; }

/* NEW badge */
.bpv-card-new {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Card body */
.bpv-card-body {
  padding: 12px 14px 14px;
}
.bpv-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.bpv-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
.bpv-card-cat {
  background: var(--bg3);
  color: var(--link);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* Card no-thumb placeholder */
.bpv-card-no-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
}
.bpv-card-no-thumb svg { width: 40px; height: 40px; fill: #444; }

/* ════════════════════════════════════
   CATEGORY CHIPS (Homepage filter)
════════════════════════════════════ */
.bpv-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bpv-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--bg3);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.bpv-cat-chip:hover,
.bpv-cat-chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ════════════════════════════════════
   SINGLE VIDEO PAGE
════════════════════════════════════ */
.bpv-single-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* Player */
.bpv-player-wrap {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}
.bpv-player-wrap iframe,
.bpv-player-wrap .baiplayer-wrap,
.bpv-player-wrap video {
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* Video info */
.bpv-video-info { margin-top: 16px; }
.bpv-video-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 14px;
}

/* Meta row */
.bpv-video-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.bpv-meta-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.bpv-meta-pill svg { width: 15px; height: 15px; fill: var(--muted); }
.bpv-meta-pill a { color: var(--link); }

/* Action buttons */
.bpv-video-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bpv-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.bpv-action-btn:hover { background: var(--border); color: var(--text); }
.bpv-action-btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.bpv-action-btn.primary:hover {
  background: #cc0052;
  border-color: #cc0052;
  color: #fff;
}

/* Tags */
.bpv-video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.bpv-tag {
  background: var(--bg3);
  color: var(--link);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  transition: all .2s;
}
.bpv-tag:hover {
  background: var(--link);
  color: #000;
  border-color: var(--link);
}

/* Description accordion */
.bpv-desc-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: #ccc;
}
.bpv-desc-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.bpv-desc-full { display: none; margin-top: 12px; }
.bpv-desc-full.open { display: block; }

/* ════════════════════════════════════
   RELATED SIDEBAR
════════════════════════════════════ */
.bpv-sidebar-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bpv-related-list { display: flex; flex-direction: column; gap: 10px; }
.bpv-related-card {
  display: flex;
  gap: 10px;
  border-radius: 8px;
  padding: 6px;
  text-decoration: none;
  transition: background .2s;
}
.bpv-related-card:hover { background: var(--bg3); }
.bpv-related-thumb {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
}
.bpv-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bpv-related-thumb .hover-play {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.bpv-related-card:hover .hover-play { opacity: 1; }
.bpv-related-thumb .hover-play svg { width: 28px; height: 28px; fill: #fff; }
.bpv-related-info { flex: 1; min-width: 0; }
.bpv-related-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.bpv-related-meta { font-size: 11px; color: var(--muted); }

/* ════════════════════════════════════
   ARCHIVE / CATEGORY PAGE
════════════════════════════════════ */
.bpv-archive-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.bpv-archive-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.bpv-archive-title { font-size: 22px; font-weight: 700; }
.bpv-archive-count { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ════════════════════════════════════
   PAGINATION
════════════════════════════════════ */
.bpv-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.bpv-pagination a,
.bpv-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  transition: all .2s;
}
.bpv-pagination a:hover { background: var(--bg3); color: var(--text); border-color: var(--accent); }
.bpv-pagination .current,
.bpv-pagination span.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .site-logo { font-size: 22px; display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ════════════════════════════════════
   WIDGETS & SIDEBAR
════════════════════════════════════ */
.widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.widget-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ════════════════════════════════════
   SEARCH RESULTS
════════════════════════════════════ */
.search-header { margin-bottom: 28px; }
.search-header h1 { font-size: 24px; font-weight: 700; }
.search-header h1 span { color: var(--accent); }
.search-count { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ════════════════════════════════════
   404 PAGE
════════════════════════════════════ */
.bpv-404 {
  text-align: center;
  padding: 80px 24px;
}
.bpv-404-code {
  font-size: 120px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.bpv-404-msg { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.bpv-404-sub { color: var(--muted); margin-bottom: 32px; }

/* ════════════════════════════════════
   LOADING SKELETON
════════════════════════════════════ */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.skeleton {
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  background: var(--bg3);
  border-radius: var(--radius-sm);
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1200px) {
  .bpv-single-layout { grid-template-columns: 1fr 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .bpv-single-layout { grid-template-columns: 1fr; }
  .bpv-related-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
    gap: 12px;
  }
  .bpv-related-card { flex-direction: column; }
  .bpv-related-thumb { width: 100%; }
  .bpv-hero-content { left: 32px; right: 32px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; gap: 12px; }
  .header-search { display: none; }
  .menu-toggle { display: flex; align-items: center; }
  #site-nav { display: none; width: 100%; order: 10; }
  #site-nav.open { display: block; }
  .nav-menu { flex-direction: column; align-items: stretch; padding: 12px 16px; }
  .nav-menu > li > a { border-radius: var(--radius-sm); }
  #site-content { padding: 20px 16px 40px; }
  .bpv-hero { aspect-ratio: 16/9; max-height: 300px; }
  .bpv-hero-content { left: 20px; bottom: 30px; right: 20px; }
  .bpv-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .bpv-grid { grid-template-columns: 1fr 1fr; }
  .bpv-video-title { font-size: 18px; }
}

/* ════════════════════════════════════
   UTILITIES
════════════════════════════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
