/* 麻豆 MADOU FILMS - Official Site Styles */
/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: #000000;
  color: #DDDDDD;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

body.panel-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #FFFFFF;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 3px;
}

/* Layout Helpers */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }
}

/* Top Info Bar */
.top-bar {
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: #A5A5A5;
  height: 36px;
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar-left {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-center {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.top-bar-center a {
  color: #A5A5A5;
}

.top-bar-center a:hover {
  color: #FFFFFF;
}

.top-bar-right {
  display: flex;
  gap: 18px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.top-bar-right a,
.top-bar-right button {
  color: #A5A5A5;
  font-size: 13px;
}

.top-bar-right a:hover,
.top-bar-right button:hover {
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .top-bar-left span {
    display: none;
  }
  .top-bar-center {
    display: none;
  }
  .top-bar-left::after {
    content: "麻豆 · 原创影像";
    color: #A5A5A5;
  }
  .top-bar-right a:not(.search-trigger),
  .top-bar-right .help-link {
    display: none;
  }
}

/* Brand Navigation */
.brand-nav {
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
}

.brand-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  color: #F7F7F7;
  font-size: 14px;
  min-height: 44px;
}

.menu-toggle:hover {
  border-color: rgba(255,255,255,0.5);
  background: #1A1A1A;
}

.current-channel {
  font-size: 14px;
  color: #A5A5A5;
  display: none;
}

@media (min-width: 1100px) {
  .current-channel {
    display: block;
  }
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 auto;
  padding: 0 20px;
}

.brand-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-logo .logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-logo .logo-en {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: #C7C7C7;
  margin-top: 2px;
  text-transform: uppercase;
}

.brand-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #FFFFFF;
}

.btn-primary:hover {
  background: #EDEDED;
  color: #000000;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.45);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .brand-nav-right .btn-premiere {
    display: none;
  }
  .brand-logo .logo-text {
    font-size: 18px;
    letter-spacing: 0.12em;
  }
  .brand-logo .logo-en {
    font-size: 9px;
  }
}

/* Channel Navigation */
.channel-nav {
  background: #0B0B0B;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: sticky;
  top: 64px;
  z-index: 999;
}

.channel-nav-inner {
  display: flex;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.channel-nav-inner::-webkit-scrollbar {
  display: none;
}

.channel-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.channel-list a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 14px;
  font-size: 14px;
  color: #A5A5A5;
  white-space: nowrap;
  position: relative;
  border-bottom: 2px solid transparent;
}

.channel-list a:hover {
  color: #FFFFFF;
}

.channel-list a.active {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

.channel-more {
  position: relative;
  margin-left: 8px;
}

.channel-more > button {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 14px;
  font-size: 14px;
  color: #A5A5A5;
  white-space: nowrap;
}

.channel-more > button:hover {
  color: #FFFFFF;
}

.more-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 18px 46px rgba(0,0,0,0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 1100;
}

.channel-more.open .more-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.more-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #DDDDDD;
}

.more-dropdown a:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .channel-nav-inner {
    padding: 0 14px;
  }
  .channel-list a {
    padding: 0 12px;
    font-size: 13px;
  }
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Side Panel (全站栏目) */
.side-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  max-width: 90vw;
  height: 100%;
  background: #0B0B0B;
  border-right: 1px solid rgba(255,255,255,0.12);
  z-index: 2100;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
}

.side-panel.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.side-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.side-panel-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.side-panel-brand img {
  height: 28px;
  width: auto;
}

.side-panel-brand .name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}

.panel-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #A5A5A5;
  font-size: 22px;
}

.panel-close:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

.side-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
}

.panel-group {
  margin-bottom: 32px;
}

.panel-group-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #727272;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.panel-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.panel-item-name {
  font-size: 16px;
  font-weight: 600;
  color: #F7F7F7;
  margin-bottom: 4px;
}

.panel-item-desc {
  font-size: 13px;
  color: #A5A5A5;
  line-height: 1.5;
}

.panel-item:hover .panel-item-name {
  color: #FFFFFF;
}

/* Search Panel */
.search-panel {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-panel-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 24px;
}

.search-panel-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 80px;
  overflow-y: auto;
}

.search-form {
  width: 100%;
  max-width: 640px;
  margin-bottom: 48px;
}

.search-input-wrap {
  position: relative;
}

.search-input {
  width: 100%;
  height: 56px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 0 20px;
  font-size: 18px;
  color: #FFFFFF;
  outline: none;
}

.search-input::placeholder {
  color: #727272;
}

.search-input:focus {
  border-color: rgba(255,255,255,0.5);
}

.search-section {
  width: 100%;
  max-width: 640px;
  margin-bottom: 36px;
}

.search-section-title {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #727272;
  margin-bottom: 16px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tags a {
  display: inline-flex;
  padding: 8px 16px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 14px;
  color: #DDDDDD;
}

.search-tags a:hover {
  border-color: rgba(255,255,255,0.4);
  color: #FFFFFF;
  background: #1A1A1A;
}

.search-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.search-links a {
  display: block;
  padding: 12px 14px;
  background: #0B0B0B;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 14px;
  color: #A5A5A5;
  text-align: center;
}

.search-links a:hover {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.3);
}

.search-result-item {
  display: none;
}

.search-result-item.match {
  display: block;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.12);
  z-index: 1500;
  padding-bottom: env(safe-area-inset-bottom, 0);
  height: calc(56px + env(safe-area-inset-bottom, 0));
}

.mobile-bottom-nav-inner {
  display: flex;
  height: 56px;
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  color: #A5A5A5;
  min-height: 48px;
}

.mobile-bottom-nav a.active {
  color: #FFFFFF;
}

.mobile-bottom-nav a span.icon {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
  }
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0));
  }
}

/* Main Content */
main {
  min-height: 60vh;
}

/* Hero Section */
.hero {
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #121212;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
}

.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1A1A1A 0%, #0B0B0B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2A2A;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #F7F7F7;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-content .lead {
  font-size: 16px;
  color: #A5A5A5;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-news {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-news-item {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-news-item:first-child {
  border-top: none;
  padding-top: 0;
}

.hero-news-label {
  font-size: 12px;
  color: #727272;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hero-news-text {
  font-size: 14px;
  color: #DDDDDD;
  line-height: 1.6;
}

.hero-news-item a:hover .hero-news-text {
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .hero {
    padding: 40px 0 50px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .hero-news {
    order: 3;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content .lead {
    font-size: 15px;
  }
}

/* Section Common */
.section {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #F7F7F7;
  letter-spacing: 0.04em;
}

.section-subtitle {
  font-size: 14px;
  color: #A5A5A5;
  margin-top: 6px;
}

.section-more {
  font-size: 14px;
  color: #C7C7C7;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
}

.section-more:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1000px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #0B0B0B;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.card:hover {
  border-color: rgba(255,255,255,0.25);
  background: #121212;
}

.card-media {
  aspect-ratio: 16 / 9;
  background: #121212;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.03);
}

.card-media-placeholder {
  width: 100%;
  height: 100%;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2A2A;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.card-body {
  padding: 20px;
}

.card-tag {
  font-size: 12px;
  color: #727272;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.card-title {
  font-size: 17px;
  font-weight: 600;
  color: #F7F7F7;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-desc {
  font-size: 14px;
  color: #A5A5A5;
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-link {
  font-size: 13px;
  color: #C7C7C7;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  color: #FFFFFF;
}

/* Feature List / Content Blocks */
.content-block {
  background: #0B0B0B;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}

.content-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F7F7F7;
  margin-bottom: 12px;
}

.content-block p {
  font-size: 15px;
  color: #DDDDDD;
  line-height: 1.75;
  margin-bottom: 12px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-meta {
  font-size: 13px;
  color: #727272;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Page Header (inner pages) */
.page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #050505;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #F7F7F7;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.page-header .page-desc {
  font-size: 16px;
  color: #A5A5A5;
  max-width: 680px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 26px;
  }
  .page-header {
    padding: 36px 0 24px;
  }
}

/* Article Style */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #F7F7F7;
  margin: 36px 0 16px;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #F7F7F7;
  margin: 28px 0 12px;
}

.article-content p {
  font-size: 15px;
  color: #DDDDDD;
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-content ul {
  margin: 16px 0 24px 20px;
}

.article-content ul li {
  font-size: 15px;
  color: #DDDDDD;
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

.article-content .note {
  font-size: 13px;
  color: #A5A5A5;
  padding: 14px 18px;
  background: #121212;
  border-left: 3px solid rgba(255,255,255,0.3);
  margin: 24px 0;
}

/* FAQ */
.faq-list details {
  background: #0B0B0B;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #F7F7F7;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 20px;
  color: #A5A5A5;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #A5A5A5;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 56px 0 32px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-brand .logo-en {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #C7C7C7;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: #A5A5A5;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #727272;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #A5A5A5;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #727272;
}

.footer-notice {
  max-width: 640px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding-bottom: 80px;
  }
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-40 {
  margin-top: 40px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: #A5A5A5;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Print / Accessibility */
@media print {
  .top-bar, .brand-nav, .channel-nav, .mobile-bottom-nav, .side-panel, .search-panel, .overlay {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
