/* ============================================
   半糖次元 修车改装视频社区 - 全站样式表
   品牌: 半糖次元 | 域名: atyorc.cn
   原创配色方案 & 原创布局
   ============================================ */

/* === CSS Variables === */
:root {
  --primary: #E63946;
  --primary-dark: #C62828;
  --secondary: #1D3557;
  --secondary-light: #264573;
  --accent: #F4A261;
  --accent-light: #F7B97A;
  --bg-dark: #0D1117;
  --bg-card: #161B22;
  --bg-card-hover: #1C2333;
  --text-light: #F1FAEE;
  --text-muted: #A8DADC;
  --text-dim: #6B7B8D;
  --border-color: #21262D;
  --gradient-primary: linear-gradient(135deg, #E63946 0%, #F4A261 100%);
  --gradient-dark: linear-gradient(180deg, #0D1117 0%, #161B22 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-hover: 0 8px 40px rgba(230,57,70,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* === Container === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header & Navigation === */
.oqkgr9x {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.oqkgr9x.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.1mdf29 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.0nt2jlg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.0nt2jlg img {
  height: 42px;
  width: auto;
}

.gb678pju {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.61vjchr {
  display: flex;
  align-items: center;
  gap: 6px;
}

.61vjchr a {
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.61vjchr a:hover,
.61vjchr a.active {
  color: var(--text-light);
  background: rgba(230, 57, 70, 0.15);
}

.ijv8tic {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.ijv8tic span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
  border-radius: 2px;
}

/* === Search Bar === */
.ppifn {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  margin-top: 70px;
}

.ygc21jvx {
  display: flex;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
}

.ygc21jvx:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.ygc21jvx input {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 0.95rem;
  outline: none;
}

.ygc21jvx input::placeholder {
  color: var(--text-dim);
}

.ygc21jvx button {
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.ygc21jvx button:hover {
  background: var(--primary-dark);
}

/* === Banner / Hero === */
.1e6s9imz {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.1e6s9imz .38dxe1r {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.i62ze2 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.i62ze2 h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.i62ze2 h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.i62ze2 p {
  font-size: 1.15rem;
  color: rgba(241, 250, 238, 0.85);
  margin-bottom: 28px;
  line-height: 1.8;
}

.36d85 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.36d85 span {
  padding: 6px 16px;
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-light);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* === Section Styles === */
.jf2vsl {
  padding: 80px 0;
}

.6rlx16wv {
  background: var(--bg-card);
}

.7lfe5xy8 {
  text-align: center;
  margin-bottom: 50px;
}

.7lfe5xy8 h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.7lfe5xy8 h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.7lfe5xy8 p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* === Video Card === */
.98cjuzlz {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.eqynab {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.eqynab:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 57, 70, 0.3);
}

.7iu7wz {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.7iu7wz img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.eqynab:hover .7iu7wz img {
  transform: scale(1.05);
}

.xhutj {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 64px;
  height: 64px;
  background: rgba(230, 57, 70, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.xhutj::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}

.eqynab:hover .xhutj {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.ri5sc {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.velx14 {
  padding: 16px;
}

.velx14 h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.k816qy6 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

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

.r6icjuct {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(244, 162, 97, 0.15);
  color: var(--accent);
  border-radius: 4px;
  font-size: 0.75rem;
  margin-top: 8px;
}

/* === Team Grid === */
.h4xin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.9v52tfx {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.9v52tfx:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.9v52tfx .py35p {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.9v52tfx .9dv7y1 {
  padding: 20px;
}

.9v52tfx h4 {
  margin-bottom: 4px;
}

.9v52tfx .wipyp5 {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.9v52tfx p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.9v52tfx .qz87m {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.9v52tfx .qz87m a {
  padding: 6px 14px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.9v52tfx .qz87m a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* === FAQ Section === */
.0ze2ixx {
  max-width: 800px;
  margin: 0 auto;
}

.d9ds6rg {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.ac9qy {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}

.ac9qy:hover {
  background: rgba(230, 57, 70, 0.05);
}

.ac9qy .qz9ubwf {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.d9ds6rg.active .qz9ubwf {
  transform: rotate(45deg);
}

.12fs3h46 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.q1swko0 {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* === Reviews / Testimonials === */
.p2lnx {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.tul5rdx8 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.tul5rdx8:hover {
  border-color: rgba(230, 57, 70, 0.3);
}

.vxflsmm {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.6w1o0de {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.61oqy80q {
  display: flex;
  align-items: center;
  gap: 12px;
}

.11wm9qu {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.m7krfe .cp6llsc {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
}

.m7krfe .w5iux99m {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* === Partner Logos === */
.oxrkjgx {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.wbr2cv {
  padding: 16px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: var(--transition);
}

.wbr2cv:hover {
  border-color: var(--primary);
  color: var(--text-light);
}

/* === How-To Guide === */
.vqs3nmd {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.4ef1nx2 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.4ef1nx2:hover {
  border-color: var(--primary);
}

.4ef1nx2 .41f2jzqx {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.4ef1nx2 h4 {
  margin-bottom: 8px;
}

.4ef1nx2 p {
  font-size: 0.9rem;
}

/* === Contact Section === */
.um67os {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.tue2s9im {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.tue2s9im h4 {
  margin-bottom: 12px;
  color: var(--accent);
}

.tue2s9im p {
  font-size: 0.9rem;
}

/* === Social Share === */
.eenpg {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.pd6902vo {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.pd6902vo:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.id3wm6sv { background: #07C160; }
.d764cr { background: #E6162D; }
.x4c7ela { background: #161823; border: 1px solid #333; }
.hprtjub { background: #00A1D6; }

/* === Footer === */
.5kmqv4l6 {
  background: #0A0D12;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}

.a4u0uqv6 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.iv2prh .0nt2jlg {
  margin-bottom: 16px;
}

.iv2prh p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.m7op1pt9 h5 {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.m7op1pt9 a {
  display: block;
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition);
}

.m7op1pt9 a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.b5hwoyn {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.ddtcyx {
  text-align: center;
}

.ddtcyx img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}

.ddtcyx span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.tft7b9 {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.tft7b9 a {
  color: var(--text-dim);
}

.tft7b9 a:hover {
  color: var(--primary);
}

/* === Breadcrumb === */
.iesy9 {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.iesy9 a {
  color: var(--text-dim);
}

.iesy9 a:hover {
  color: var(--primary);
}

.iesy9 span {
  margin: 0 8px;
  color: var(--text-dim);
}

/* === Stats Bar === */
.k4gf9hv {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.h8eq2 {
  text-align: center;
}

.h8eq2 .pnaz33 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h8eq2 .dtl2x50 {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* === AI Feature Cards === */
.ut2z3h1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.l0q5nd3i {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.l0q5nd3i:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.7ketf4 {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.l0q5nd3i h4 {
  margin-bottom: 8px;
}

.l0q5nd3i p {
  font-size: 0.9rem;
}

/* === Category Tabs === */
.5xrexiki {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.q5c45 {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.q5c45:hover,
.q5c45.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* === Inner Page Banner === */
.2cew8 {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.2cew8 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.3id8vu2b {
  position: relative;
  z-index: 2;
  text-align: center;
}

.3id8vu2b h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

/* === MCP Frontend Mock === */
.jpm0v {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}

.jpm0v h5 {
  margin-bottom: 10px;
  color: var(--accent);
}

.jpm0v .wyg2xha {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.jpm0v .km6smmp {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2EA043;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* === Lazy Load Placeholder === */
.lazy-img {
  opacity: 1;
  transition: opacity 0.5s ease;
  background: var(--bg-card);
}

.lazy-img.loaded {
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .a4u0uqv6 {
    grid-template-columns: 1fr 1fr;
  }
  .k4gf9hv {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .ijv8tic {
    display: flex;
  }
  .61vjchr {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border-color);
  }
  .61vjchr.open {
    transform: translateY(0);
  }
  .61vjchr a {
    padding: 12px 16px;
    width: 100%;
  }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .1e6s9imz { min-height: 400px; }
  .i62ze2 h1 { font-size: 2rem; }
  .jf2vsl { padding: 50px 0; }
  .a4u0uqv6 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .98cjuzlz {
    grid-template-columns: 1fr;
  }
  .k4gf9hv {
    gap: 20px;
  }
  .h8eq2 .pnaz33 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .i62ze2 h1 {
    font-size: 1.6rem;
  }
  .ygc21jvx {
    margin: 0 10px;
  }
}

/* === EEAT Trust Signals === */
.fq542vk {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
  margin-top: 20px;
}

.tirna {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tirna a {
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: var(--transition);
}

.tirna a:hover {
  color: var(--primary);
}

.tirna span {
  color: var(--border-color);
  font-size: 0.8rem;
}

.w0f29r {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

/* === Credential Badges === */
.qf08e9dt {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 10px;
}

.iu00pots {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 500;
}

/* === Publish Info === */
.kgnouhmc {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

/* === Video Badge === */
.gcztgre {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 2;
}

/* === Video Meta Date === */
.wj83p1 {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 6px;
}

/* === Tag Cloud === */
.r66fnv2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.r66fnv2 a {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.r66fnv2 a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(230, 57, 70, 0.08);
}

/* === CTA Button (used in 404 etc) === */
.jrnmc7 {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.jrnmc7:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.4);
  color: white;
}

/* === About Content === */
.oc5wgy h2 {
  margin-bottom: 20px;
}

.oc5wgy h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 1.2rem;
}

.zysawia p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* === Responsive additions === */
@media (max-width: 768px) {
  .kgnouhmc {
    flex-direction: column;
    gap: 6px;
  }
  .tirna {
    flex-direction: column;
    gap: 8px;
  }
  .tirna span {
    display: none;
  }
  .qf08e9dt {
    justify-content: center;
  }
  .r66fnv2 {
    gap: 6px;
  }
  .r66fnv2 a {
    font-size: 0.78rem;
    padding: 4px 12px;
  }
}
