/* ============================================
   幼幼 - 原创样式表
   品牌：幼幼 | 域名：Legfug.cn
   影视传媒公司 + 视频社区
   ============================================ */

/* --- CSS Variables --- */
:root {
  --tx-pink: #FF6B9D;
  --tx-rose: #C44569;
  --tx-gold: #F8B500;
  --tx-dark: #0D0D1A;
  --tx-card: #1A1A2E;
  --tx-card-hover: #232340;
  --tx-text: #FFFFFF;
  --tx-text-muted: #B0B0C8;
  --tx-gradient: linear-gradient(135deg, #FF6B9D, #C44569);
  --tx-gradient-gold: linear-gradient(135deg, #F8B500, #FF6B9D);
  --tx-shadow: 0 8px 32px rgba(255,107,157,0.15);
  --tx-radius: 12px;
  --tx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
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(--tx-dark);
  color: var(--tx-text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--tx-pink); text-decoration: none; transition: var(--tx-transition); }
a:hover { color: var(--tx-gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; }

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

/* --- Header / Navigation --- */
.tx-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,157,0.1);
  transition: var(--tx-transition);
}
.tx-header.scrolled { background: rgba(13,13,26,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.tx-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: 1440px; margin: 0 auto; padding: 0 20px;
}
.tx-logo { display: flex; align-items: center; gap: 10px; }
.tx-logo img { height: 42px; width: auto; }
.tx-logo-text { font-size: 1.3rem; font-weight: 800; background: var(--tx-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.tx-nav { display: flex; align-items: center; gap: 6px; }
.tx-nav a {
  padding: 8px 16px; border-radius: 8px; font-size: 0.92rem; font-weight: 500;
  color: var(--tx-text-muted); transition: var(--tx-transition); white-space: nowrap;
}
.tx-nav a:hover, .tx-nav a.active { color: var(--tx-text); background: rgba(255,107,157,0.12); }

/* Search Box */
.tx-search-bar {
  display: flex; align-items: center; margin: 0 auto;
  max-width: 800px; padding: 8px 20px;
  background: var(--tx-card);
  border-bottom: 1px solid rgba(255,107,157,0.08);
}
.tx-search-bar.below-nav {
  margin-top: 70px;
  padding: 10px 20px;
}
.tx-search-input-wrap {
  display: flex; align-items: center; width: 100%;
  max-width: 600px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,107,157,0.2);
  border-radius: 25px; padding: 6px 16px;
  transition: var(--tx-transition);
}
.tx-search-input-wrap:focus-within { border-color: var(--tx-pink); box-shadow: 0 0 12px rgba(255,107,157,0.2); }
.tx-search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--tx-text); font-size: 0.9rem; padding: 6px 8px;
}
.tx-search-input::placeholder { color: var(--tx-text-muted); }
.tx-search-btn {
  background: var(--tx-gradient); border: none; color: #fff;
  padding: 8px 20px; border-radius: 20px; cursor: pointer;
  font-size: 0.85rem; font-weight: 600; transition: var(--tx-transition);
}
.tx-search-btn:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(255,107,157,0.4); }

/* Mobile Menu Toggle */
.tx-menu-toggle { display: none; background: none; border: none; color: var(--tx-text); font-size: 1.5rem; cursor: pointer; padding: 8px; }

/* --- Hero Banner --- */
.tx-hero {
  position: relative; min-height: 75vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; margin-top: 70px;
}
.tx-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.tx-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,26,0.3) 0%, rgba(13,13,26,0.7) 60%, rgba(13,13,26,0.95) 100%);
}
.tx-hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 60px 20px;
}
.tx-hero-content h1 {
  font-size: 3rem; font-weight: 900; margin-bottom: 16px;
  background: var(--tx-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.tx-hero-content h2 { font-size: 1.3rem; color: var(--tx-text-muted); margin-bottom: 24px; font-weight: 400; }
.tx-hero-content p { font-size: 1rem; color: var(--tx-text-muted); margin-bottom: 30px; line-height: 1.8; }
.tx-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.tx-hero-tag {
  padding: 6px 18px; border-radius: 20px; font-size: 0.82rem;
  background: rgba(255,107,157,0.12); color: var(--tx-pink);
  border: 1px solid rgba(255,107,157,0.2);
}

/* --- Section Common --- */
.tx-section { padding: 70px 0; }
.tx-section-header { text-align: center; margin-bottom: 50px; }
.tx-section-header h2 {
  font-size: 2rem; margin-bottom: 12px;
  background: var(--tx-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.tx-section-header h3 { font-size: 1rem; color: var(--tx-text-muted); font-weight: 400; }
.tx-section-alt { background: rgba(26,26,46,0.5); }
.tx-divider { width: 60px; height: 3px; background: var(--tx-gradient); margin: 16px auto; border-radius: 2px; }

/* --- Buttons --- */
.tx-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 25px; font-size: 0.95rem;
  font-weight: 600; transition: var(--tx-transition); cursor: pointer; border: none;
}
.tx-btn-primary { background: var(--tx-gradient); color: #fff; }
.tx-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--tx-shadow); color: #fff; }
.tx-btn-outline {
  background: transparent; color: var(--tx-pink);
  border: 2px solid var(--tx-pink);
}
.tx-btn-outline:hover { background: var(--tx-pink); color: #fff; }
.tx-btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.tx-btn-gold { background: var(--tx-gradient-gold); color: #fff; }

/* --- Video Cards Grid --- */
.tx-video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.tx-video-card {
  background: var(--tx-card); border-radius: var(--tx-radius);
  overflow: hidden; transition: var(--tx-transition);
  border: 1px solid rgba(255,107,157,0.06);
}
.tx-video-card:hover { transform: translateY(-6px); box-shadow: var(--tx-shadow); border-color: rgba(255,107,157,0.15); }
.tx-video-thumb {
  position: relative; padding-top: 56.25%; overflow: hidden; cursor: pointer;
}
.tx-video-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.tx-video-card:hover .tx-video-thumb img { transform: scale(1.08); }
.tx-video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--tx-transition);
  background: rgba(13,13,26,0.4);
}
.tx-video-card:hover .tx-video-play { opacity: 1; }
.tx-video-play-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--tx-gradient); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,107,157,0.4);
}
.tx-video-play-icon::after {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.tx-video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75); color: #fff;
  padding: 2px 8px; border-radius: 4px; font-size: 0.78rem;
}
.tx-video-info { padding: 16px; }
.tx-video-info h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tx-video-meta { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: var(--tx-text-muted); }
.tx-video-meta span { display: flex; align-items: center; gap: 4px; }
.tx-video-tag {
  display: inline-block; padding: 2px 10px; border-radius: 10px;
  font-size: 0.72rem; background: rgba(255,107,157,0.1); color: var(--tx-pink);
  margin-top: 8px;
}

/* --- Star Cards --- */
.tx-star-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.tx-star-card {
  background: var(--tx-card); border-radius: var(--tx-radius);
  overflow: hidden; transition: var(--tx-transition); text-align: center;
  border: 1px solid rgba(255,107,157,0.06);
}
.tx-star-card:hover { transform: translateY(-6px); box-shadow: var(--tx-shadow); }
.tx-star-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.tx-star-card-info { padding: 16px; }
.tx-star-card-info h4 { font-size: 1rem; margin-bottom: 4px; }
.tx-star-card-info p { font-size: 0.82rem; color: var(--tx-text-muted); }

/* --- Feature Grid --- */
.tx-feature-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.tx-feature-card {
  background: var(--tx-card); border-radius: var(--tx-radius); padding: 32px 24px;
  transition: var(--tx-transition); border: 1px solid rgba(255,107,157,0.06);
  text-align: center;
}
.tx-feature-card:hover { transform: translateY(-4px); box-shadow: var(--tx-shadow); border-color: rgba(255,107,157,0.15); }
.tx-feature-icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px;
  background: var(--tx-gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.tx-feature-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.tx-feature-card p { font-size: 0.88rem; color: var(--tx-text-muted); line-height: 1.7; }

/* --- Expert Cards --- */
.tx-expert-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.tx-expert-card {
  background: var(--tx-card); border-radius: var(--tx-radius); padding: 30px 24px;
  text-align: center; transition: var(--tx-transition);
  border: 1px solid rgba(255,107,157,0.06);
}
.tx-expert-card:hover { transform: translateY(-4px); box-shadow: var(--tx-shadow); }
.tx-expert-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px;
  object-fit: cover; border: 3px solid var(--tx-pink);
}
.tx-expert-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.tx-expert-card .tx-expert-title { font-size: 0.82rem; color: var(--tx-pink); margin-bottom: 10px; }
.tx-expert-card p { font-size: 0.85rem; color: var(--tx-text-muted); margin-bottom: 16px; }
.tx-expert-actions { display: flex; gap: 10px; justify-content: center; }

/* --- Reviews / Testimonials --- */
.tx-review-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.tx-review-card {
  background: var(--tx-card); border-radius: var(--tx-radius); padding: 24px;
  border: 1px solid rgba(255,107,157,0.06); transition: var(--tx-transition);
}
.tx-review-card:hover { border-color: rgba(255,107,157,0.15); }
.tx-review-stars { color: var(--tx-gold); font-size: 0.9rem; margin-bottom: 12px; }
.tx-review-card p { font-size: 0.9rem; color: var(--tx-text-muted); margin-bottom: 16px; line-height: 1.7; font-style: italic; }
.tx-review-author { display: flex; align-items: center; gap: 12px; }
.tx-review-author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--tx-gradient); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.tx-review-author-info h5 { font-size: 0.9rem; }
.tx-review-author-info span { font-size: 0.78rem; color: var(--tx-text-muted); }

/* --- FAQ Accordion --- */
.tx-faq-list { max-width: 800px; margin: 0 auto; }
.tx-faq-item {
  background: var(--tx-card); border-radius: var(--tx-radius);
  margin-bottom: 12px; overflow: hidden;
  border: 1px solid rgba(255,107,157,0.06);
}
.tx-faq-question {
  padding: 18px 24px; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 0.95rem; transition: var(--tx-transition);
}
.tx-faq-question:hover { color: var(--tx-pink); }
.tx-faq-question .tx-faq-toggle { font-size: 1.2rem; transition: transform 0.3s ease; color: var(--tx-pink); }
.tx-faq-item.active .tx-faq-toggle { transform: rotate(45deg); }
.tx-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 24px;
}
.tx-faq-item.active .tx-faq-answer { max-height: 300px; padding: 0 24px 18px; }
.tx-faq-answer p { font-size: 0.88rem; color: var(--tx-text-muted); line-height: 1.8; }

/* --- Partner Logos --- */
.tx-partner-grid {
  display: flex; flex-wrap: wrap; gap: 30px;
  align-items: center; justify-content: center;
}
.tx-partner-logo {
  width: 140px; height: 70px; background: rgba(255,255,255,0.04);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  padding: 12px; transition: var(--tx-transition);
  border: 1px solid rgba(255,107,157,0.06);
  font-size: 0.85rem; color: var(--tx-text-muted); font-weight: 600;
}
.tx-partner-logo:hover { background: rgba(255,107,157,0.08); border-color: rgba(255,107,157,0.2); }

/* --- Footer --- */
.tx-footer {
  background: rgba(10,10,22,0.95); border-top: 1px solid rgba(255,107,157,0.1);
  padding: 50px 0 20px;
}
.tx-footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; margin-bottom: 40px;
}
.tx-footer-col h4 {
  font-size: 1rem; margin-bottom: 16px;
  background: var(--tx-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.tx-footer-col p, .tx-footer-col a { font-size: 0.85rem; color: var(--tx-text-muted); display: block; margin-bottom: 8px; }
.tx-footer-col a:hover { color: var(--tx-pink); }
.tx-footer-qr { display: flex; gap: 20px; margin-top: 12px; }
.tx-footer-qr-item { text-align: center; }
.tx-footer-qr-item img { width: 100px; height: 100px; border-radius: 8px; margin-bottom: 6px; }
.tx-footer-qr-item span { font-size: 0.75rem; color: var(--tx-text-muted); }
.tx-footer-bottom {
  text-align: center; padding-top: 20px;
  border-top: 1px solid rgba(255,107,157,0.06);
  font-size: 0.82rem; color: var(--tx-text-muted);
}
.tx-footer-bottom a { color: var(--tx-pink); }

/* --- Share Buttons --- */
.tx-share { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.tx-share a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,107,157,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--tx-pink); font-size: 0.9rem; transition: var(--tx-transition);
}
.tx-share a:hover { background: var(--tx-gradient); color: #fff; }

/* --- Breadcrumb --- */
.tx-breadcrumb {
  padding: 16px 0; font-size: 0.82rem; color: var(--tx-text-muted);
  margin-top: 70px;
}
.tx-breadcrumb a { color: var(--tx-pink); }
.tx-breadcrumb span { margin: 0 8px; }

/* --- Stats Bar --- */
.tx-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; padding: 40px 0;
}
.tx-stat-item { text-align: center; }
.tx-stat-num {
  font-size: 2.5rem; font-weight: 900;
  background: var(--tx-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.tx-stat-label { font-size: 0.88rem; color: var(--tx-text-muted); margin-top: 4px; }

/* --- Community Section --- */
.tx-community-features {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.tx-community-card {
  background: var(--tx-card); border-radius: var(--tx-radius); padding: 24px;
  text-align: center; transition: var(--tx-transition);
  border: 1px solid rgba(255,107,157,0.06);
}
.tx-community-card:hover { border-color: rgba(255,107,157,0.2); transform: translateY(-3px); }
.tx-community-icon { font-size: 2rem; margin-bottom: 12px; }
.tx-community-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.tx-community-card p { font-size: 0.82rem; color: var(--tx-text-muted); }

/* --- How-To Guide --- */
.tx-howto-steps {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px; counter-reset: step;
}
.tx-howto-step {
  background: var(--tx-card); border-radius: var(--tx-radius); padding: 28px 24px;
  position: relative; counter-increment: step;
  border: 1px solid rgba(255,107,157,0.06);
}
.tx-howto-step::before {
  content: counter(step); position: absolute; top: -12px; left: 24px;
  width: 32px; height: 32px; border-radius: 50%; background: var(--tx-gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.tx-howto-step h4 { margin-top: 8px; margin-bottom: 8px; font-size: 1rem; }
.tx-howto-step p { font-size: 0.85rem; color: var(--tx-text-muted); }

/* --- Page Banner (inner pages) --- */
.tx-page-banner {
  position: relative; min-height: 300px; display: flex; align-items: center;
  justify-content: center; margin-top: 70px; overflow: hidden;
}
.tx-page-banner-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.tx-page-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,26,0.5), rgba(13,13,26,0.9));
}
.tx-page-banner-content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; }
.tx-page-banner-content h1 { font-size: 2.2rem; margin-bottom: 10px; }
.tx-page-banner-content p { color: var(--tx-text-muted); font-size: 1rem; }

/* --- Contact Info --- */
.tx-contact-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.tx-contact-card {
  background: var(--tx-card); border-radius: var(--tx-radius); padding: 28px;
  border: 1px solid rgba(255,107,157,0.06);
}
.tx-contact-card h4 { font-size: 1rem; margin-bottom: 16px; color: var(--tx-pink); }
.tx-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.tx-contact-item .label { font-size: 0.82rem; color: var(--tx-text-muted); min-width: 70px; }
.tx-contact-item .value { font-size: 0.88rem; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.tx-animate { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.tx-delay-1 { animation-delay: 0.1s; }
.tx-delay-2 { animation-delay: 0.2s; }
.tx-delay-3 { animation-delay: 0.3s; }
.tx-delay-4 { animation-delay: 0.4s; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--tx-dark); }
::-webkit-scrollbar-thumb { background: var(--tx-rose); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--tx-pink); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .tx-nav { display: none; }
  .tx-menu-toggle { display: block; }
  .tx-nav.mobile-open {
    display: flex; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0; background: rgba(13,13,26,0.98);
    padding: 16px; gap: 4px; border-bottom: 1px solid rgba(255,107,157,0.1);
  }
  .tx-nav.mobile-open a { padding: 12px 16px; }
  .tx-hero-content h1 { font-size: 2rem; }
  .tx-hero-content h2 { font-size: 1rem; }
}
@media (max-width: 768px) {
  .tx-section { padding: 50px 0; }
  .tx-section-header h2 { font-size: 1.5rem; }
  .tx-video-grid { grid-template-columns: 1fr; }
  .tx-star-grid { grid-template-columns: repeat(2, 1fr); }
  .tx-feature-grid { grid-template-columns: 1fr; }
  .tx-expert-grid { grid-template-columns: 1fr; }
  .tx-review-grid { grid-template-columns: 1fr; }
  .tx-footer-grid { grid-template-columns: 1fr; }
  .tx-hero { min-height: 60vh; }
  .tx-hero-content h1 { font-size: 1.6rem; }
  .tx-stat-num { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .tx-star-grid { grid-template-columns: 1fr; }
  .tx-hero-content { padding: 40px 16px; }
}

/* --- Lazy Load --- */
img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
img[loading="lazy"].loaded, img[loading="lazy"][src] { opacity: 1; }

/* --- Inner Page Content --- */
.tx-content { padding: 40px 0; }
.tx-content h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--tx-pink); }
.tx-content h3 { font-size: 1.2rem; margin-bottom: 12px; margin-top: 24px; }
.tx-content p { margin-bottom: 16px; color: var(--tx-text-muted); line-height: 1.8; }
.tx-content-card {
  background: var(--tx-card); border-radius: var(--tx-radius); padding: 32px;
  margin-bottom: 24px; border: 1px solid rgba(255,107,157,0.06);
}

/* --- Tag Cloud --- */
.tx-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tx-tag {
  padding: 4px 14px; border-radius: 15px; font-size: 0.78rem;
  background: rgba(255,107,157,0.08); color: var(--tx-pink);
  border: 1px solid rgba(255,107,157,0.15); transition: var(--tx-transition);
}
.tx-tag:hover { background: rgba(255,107,157,0.2); }
