/* 免费菠萝 - 新中式国风雅致风格 */
/* 主色调：深墨黑 + 朱砂红 + 鎏金 + 米白 + 青玉绿 */

:root {
  --ink-black: #1a1a1a;
  --deep-black: #0d0d0d;
  --vermillion: #c0392b;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --cream: #f5f0e8;
  --jade: #4a7c59;
  --jade-light: #6aab7e;
  --white: #fdfaf5;
  --gray: #888;
  --border: rgba(201,168,76,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif SC', 'SimSun', 'STSong', serif;
  background: var(--deep-black);
  color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

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

/* ===== 粒子动画背景 ===== */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== 顶部导航 ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.2em;
  display: block;
  margin-top: -4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.main-nav li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s;
}

.main-nav li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

.main-nav li a:hover { color: var(--gold); }
.main-nav li a:hover::after { left: 16px; right: 16px; }

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

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ===== 搜索框 ===== */
.search-bar-wrap {
  background: rgba(26,26,26,0.95);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 999;
}

.search-bar-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
}

.search-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 8px 16px;
  color: var(--cream);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--gray); }

.search-btn {
  background: var(--gold);
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 8px 20px;
  color: var(--deep-black);
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
}

.search-btn:hover { background: var(--gold-light); }

/* ===== 主内容区 ===== */
.main-content {
  margin-top: 116px;
  position: relative;
  z-index: 1;
}

/* ===== Banner ===== */
.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-banner:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.7) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  padding: 4px 16px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--vermillion);
  color: var(--white);
  padding: 12px 32px;
  border: 1px solid var(--vermillion);
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.btn-primary:hover {
  background: transparent;
  color: var(--vermillion);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 12px 32px;
  border: 1px solid var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--deep-black);
}

/* ===== 通用区块 ===== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== 分隔线 ===== */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}

/* ===== 视频卡片 ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-card {
  position: relative;
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.2);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-thumb img { transform: scale(1.08); }

/* 水墨晕染 + 鎏金光影悬停效果 */
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.3) 0%, rgba(13,13,13,0.8) 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='ink'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23ink)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  mix-blend-mode: overlay;
}

.video-card:hover .video-thumb::before,
.video-card:hover .video-thumb::after { opacity: 1; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  z-index: 3;
}

.play-btn::after {
  content: '';
  border-left: 20px solid var(--deep-black);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-label {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--vermillion);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 8px;
  letter-spacing: 0.1em;
  z-index: 3;
}

.video-info {
  padding: 16px;
}

.video-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.5;
}

.video-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray);
}

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

/* ===== 文章卡片 ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.article-card {
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}

.article-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .article-img img { transform: scale(1.05); }

.article-body {
  padding: 20px;
}

.article-cat {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.article-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.5;
}

.article-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== 品牌故事 ===== */
.story-section {
  background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(13,13,13,0.95));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-img {
  position: relative;
}

.story-img img {
  width: 100%;
  border: 1px solid var(--border);
}

.story-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}

.story-content .section-tag { text-align: left; display: block; }
.story-content .section-title { text-align: left; }

.story-text {
  color: var(--gray);
  line-height: 2;
  margin: 16px 0 24px;
  font-size: 0.95rem;
}

.story-quote {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  color: var(--gold-light);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== AI模块 ===== */
.ai-section {
  background: radial-gradient(ellipse at center, rgba(74,124,89,0.08) 0%, transparent 70%);
}

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

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.ai-feature-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.ai-feature-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== 达人模块 ===== */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.creator-card {
  text-align: center;
  padding: 32px 16px;
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.creator-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.creator-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--jade));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--deep-black);
  font-weight: 700;
  border: 2px solid var(--gold);
}

.creator-name {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.creator-title {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.creator-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== 用户评价 ===== */
.reviews-section {
  background: linear-gradient(180deg, rgba(26,26,26,0.5), rgba(13,13,13,0.8));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(26,26,26,0.9);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  transition: border-color 0.3s;
}

.review-card:hover { border-color: var(--gold); }

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 4rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  font-family: serif;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--vermillion));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 700;
}

.review-name {
  font-size: 0.9rem;
  color: var(--gold-light);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  font-size: 0.95rem;
  transition: color 0.3s;
  user-select: none;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 18px;
}

/* ===== 合作伙伴 ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.partner-item {
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  transition: border-color 0.3s, color 0.3s;
}

.partner-item:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== 联系模块 ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.contact-item {
  text-align: center;
  padding: 32px 16px;
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--border);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.contact-value {
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.6;
}

.qr-placeholder {
  width: 100px; height: 100px;
  background: var(--white);
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--ink-black);
  text-align: center;
  padding: 8px;
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--deep-black);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-brand .logo-text { font-size: 1.2rem; }

.footer-brand p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-nav h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav ul li a {
  color: var(--gray);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-nav ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.8rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

/* ===== 内页 ===== */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(201,168,76,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 16px;
  justify-content: center;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--gray); }

/* ===== 图片画廊 ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.6);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  color: var(--white);
  font-size: 0.9rem;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .story-grid, .ai-grid { grid-template-columns: 1fr; }
  .story-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(13,13,13,0.98); padding: 16px 0; border-bottom: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .main-nav li a { padding: 12px 24px; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 1.8rem; }
  .video-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .video-grid, .article-grid, .gallery-grid { grid-template-columns: 1fr; }
  .creator-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ===== 滚动动画 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 祥云纹装饰 ===== */
.cloud-divider {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  opacity: 0.4;
  margin: 8px 0;
}

/* ===== 视频播放器模态框 ===== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal.open { display: flex; }

.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: var(--deep-black);
  border: 1px solid var(--border);
}

.video-modal-close {
  position: absolute;
  top: -40px; right: 0;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.video-modal video {
  width: 100%;
  height: 100%;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray);
}

.video-placeholder .big-play {
  width: 80px; height: 80px;
  background: rgba(201,168,76,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder .big-play::after {
  content: '';
  border-left: 28px solid var(--gold);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px;
}
