/* ============================================
   光影独白 - 国产独立电影展映平台
   主样式表 (gy6-main.css)
   CSS前缀: gy6-
   设计风格: 独立电影节文艺风
   ============================================ */

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

:root {
  --gy6-film-gray: #A9A9A9;
  --gy6-screen-white: #F5F5F5;
  --gy6-subtitle-black: #1C1C1C;
  --gy6-accent-warm: #8B7355;
  --gy6-border-light: #E0E0E0;
  --gy6-text-secondary: #6B6B6B;
  --gy6-bg-dark: #2A2A2A;
  --gy6-overlay: rgba(28, 28, 28, 0.65);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--gy6-subtitle-black);
  background-color: var(--gy6-screen-white);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  color: var(--gy6-subtitle-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gy6-film-gray);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "STFangsong", "FangSong", "STSong", "SimSun", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* --- Film Grain Overlay --- */
.gy6-grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* --- Navigation --- */
.gy6-header {
  background-color: var(--gy6-screen-white);
  padding: 1rem;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--gy6-border-light);
}

.gy6-nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gy6-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gy6-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.gy6-logo-text {
  font-family: "STFangsong", "FangSong", serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--gy6-subtitle-black);
  white-space: nowrap;
}

.gy6-nav-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
}

.gy6-nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0;
  position: relative;
  white-space: nowrap;
}

.gy6-nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gy6-film-gray);
  transition: width 0.3s ease;
}

.gy6-nav-link:hover::after,
.gy6-nav-link.gy6-active::after {
  width: 100%;
}

.gy6-search-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.gy6-search-icon:hover {
  opacity: 1;
}

/* Hamburger Menu */
.gy6-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.gy6-hamburger-line {
  width: 24px;
  height: 1.5px;
  background-color: var(--gy6-subtitle-black);
  transition: all 0.3s ease;
}

.gy6-hamburger.gy6-open .gy6-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.gy6-hamburger.gy6-open .gy6-hamburger-line:nth-child(2) {
  opacity: 0;
}

.gy6-hamburger.gy6-open .gy6-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.gy6-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--gy6-screen-white);
  border-bottom: 1px solid var(--gy6-border-light);
  padding: 1rem;
  z-index: 99;
}

.gy6-mobile-menu.gy6-show {
  display: block;
}

.gy6-mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gy6-mobile-menu-list a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--gy6-border-light);
}

/* --- Hero Banner / Carousel --- */
.gy6-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background-color: var(--gy6-bg-dark);
}

.gy6-hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.gy6-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.gy6-hero-slide.gy6-slide-active {
  opacity: 1;
}

.gy6-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gy6-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(28, 28, 28, 0.85));
  color: #fff;
}

.gy6-hero-title {
  font-family: "STFangsong", "FangSong", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.gy6-hero-subtitle {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 600px;
}

.gy6-hero-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.gy6-hero-btn:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.gy6-hero-dots {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.gy6-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gy6-hero-dot.gy6-dot-active {
  background-color: #fff;
}

/* --- Section Common --- */
.gy6-section {
  padding: 3rem 1rem;
  max-width: 1440px;
  margin: 0 auto;
}

.gy6-section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.gy6-section-divider {
  width: 60px;
  height: 1px;
  background-color: var(--gy6-film-gray);
  margin: 0 auto 2rem;
}

.gy6-section-desc {
  text-align: center;
  color: var(--gy6-text-secondary);
  font-size: 0.9rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* --- Award-winning Short Films (Video Grid) --- */
.gy6-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gy6-video-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--gy6-bg-dark);
}

.gy6-video-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gy6-video-card:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.gy6-video-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.gy6-video-card-title {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.gy6-video-card-meta {
  font-size: 0.75rem;
  opacity: 0.7;
}

.gy6-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gy6-play-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
  margin-left: 3px;
}

.gy6-video-card:hover .gy6-play-icon {
  background-color: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* --- Video Modal --- */
.gy6-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

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

.gy6-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.gy6-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gy6-modal-close:hover {
  opacity: 1;
}

.gy6-video-player {
  width: 100%;
  border-radius: 4px;
  background-color: #000;
}

/* --- Director Interview --- */
.gy6-interview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gy6-interview-portrait {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 4px;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.gy6-interview-portrait:hover {
  filter: grayscale(50%);
}

.gy6-interview-text {
  flex: 1;
}

.gy6-interview-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gy6-interview-role {
  font-size: 0.8rem;
  color: var(--gy6-text-secondary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.gy6-interview-excerpt {
  font-size: 0.95rem;
  line-height: 2;
  color: #444;
}

.gy6-interview-excerpt p {
  margin-bottom: 1rem;
  text-indent: 2em;
}

.gy6-read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--gy6-accent-warm);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--gy6-accent-warm);
  padding-bottom: 2px;
}

/* --- Film Poster Wall --- */
.gy6-poster-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gy6-poster-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--gy6-bg-dark);
}

.gy6-poster-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gy6-poster-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gy6-poster-item:hover .gy6-poster-info {
  opacity: 1;
}

.gy6-poster-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.gy6-poster-director {
  font-size: 0.75rem;
  opacity: 0.7;
}

.gy6-poster-rating {
  font-size: 0.75rem;
  color: #E8C547;
  margin-top: 0.25rem;
}

/* --- Creator Notes Cards --- */
.gy6-notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gy6-note-card {
  background-color: #fff;
  border: 1px solid var(--gy6-border-light);
  border-radius: 4px;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.gy6-note-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.gy6-note-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-family: "STFangsong", "FangSong", serif;
}

.gy6-note-meta {
  font-size: 0.8rem;
  color: var(--gy6-text-secondary);
  margin-bottom: 0.75rem;
}

.gy6-note-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

/* --- Festival News --- */
.gy6-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gy6-news-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gy6-border-light);
}

.gy6-news-date {
  flex-shrink: 0;
  text-align: center;
  min-width: 60px;
}

.gy6-news-date-day {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gy6-subtitle-black);
  line-height: 1;
}

.gy6-news-date-month {
  font-size: 0.75rem;
  color: var(--gy6-text-secondary);
  letter-spacing: 0.1em;
}

.gy6-news-content h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.gy6-news-content p {
  font-size: 0.85rem;
  color: var(--gy6-text-secondary);
  line-height: 1.7;
}

/* --- CTA / Submission --- */
.gy6-cta-section {
  background-color: var(--gy6-bg-dark);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.gy6-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.05;
}

.gy6-cta-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.gy6-cta-desc {
  font-size: 0.9rem;
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  position: relative;
}

.gy6-cta-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  position: relative;
}

.gy6-cta-btn:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* --- Footer --- */
.gy6-footer {
  background-color: var(--gy6-subtitle-black);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 1rem 1.5rem;
}

.gy6-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.gy6-footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gy6-footer-brand {
  font-family: "STFangsong", "FangSong", serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.gy6-footer-slogan {
  font-size: 0.8rem;
  opacity: 0.5;
  font-style: italic;
}

.gy6-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.gy6-footer-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.gy6-footer-link:hover {
  color: rgba(255,255,255,0.85);
}

.gy6-footer-honors {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

.gy6-footer-honor-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gy6-footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.7rem;
  opacity: 0.4;
}

.gy6-footer-license {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* --- Breadcrumb --- */
.gy6-breadcrumb {
  padding: 1rem;
  max-width: 1440px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--gy6-text-secondary);
}

.gy6-breadcrumb a {
  color: var(--gy6-text-secondary);
}

.gy6-breadcrumb a:hover {
  color: var(--gy6-subtitle-black);
}

.gy6-breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* --- Article / Content Page --- */
.gy6-article-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.gy6-article-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gy6-article-h1 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.gy6-article-meta {
  font-size: 0.8rem;
  color: var(--gy6-text-secondary);
  letter-spacing: 0.1em;
}

.gy6-article-body {
  font-size: 1rem;
  line-height: 2;
  color: #333;
}

.gy6-article-body p {
  margin-bottom: 1.5rem;
  text-indent: 2em;
}

.gy6-article-body h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gy6-border-light);
}

.gy6-article-body h3 {
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
}

.gy6-article-body blockquote {
  border-left: 3px solid var(--gy6-film-gray);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(169, 169, 169, 0.06);
  font-style: italic;
  color: #555;
}

.gy6-article-img {
  margin: 2rem 0;
  border-radius: 4px;
  overflow: hidden;
}

.gy6-article-img img {
  width: 100%;
}

.gy6-article-img figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gy6-text-secondary);
  margin-top: 0.5rem;
  font-style: italic;
}

/* --- Form Styles (Creator Notes) --- */
.gy6-form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.gy6-form-group {
  margin-bottom: 1.5rem;
}

.gy6-form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gy6-text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.gy6-form-input,
.gy6-form-textarea,
.gy6-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gy6-border-light);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #fff;
  color: var(--gy6-subtitle-black);
  transition: border-color 0.3s ease;
}

.gy6-form-input:focus,
.gy6-form-textarea:focus,
.gy6-form-select:focus {
  outline: none;
  border-color: var(--gy6-film-gray);
}

.gy6-form-textarea {
  min-height: 200px;
  resize: vertical;
}

.gy6-form-submit {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--gy6-subtitle-black);
  color: #fff;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gy6-form-submit:hover {
  background-color: #333;
}

.gy6-form-success {
  display: none;
  padding: 1rem;
  background-color: rgba(139, 115, 85, 0.1);
  border: 1px solid var(--gy6-accent-warm);
  border-radius: 4px;
  text-align: center;
  color: var(--gy6-accent-warm);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* --- App Download Page --- */
.gy6-app-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--gy6-screen-white) 0%, #E8E8E8 100%);
}

.gy6-app-mockup {
  max-width: 250px;
  margin-bottom: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.gy6-app-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.gy6-app-desc {
  font-size: 0.9rem;
  color: var(--gy6-text-secondary);
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.gy6-app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gy6-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gy6-subtitle-black);
  border-radius: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.gy6-app-btn:hover {
  background-color: var(--gy6-subtitle-black);
  color: #fff;
}

.gy6-app-btn-icon {
  font-size: 1.2rem;
}

/* --- Search Box --- */
.gy6-search-box {
  display: none;
  position: absolute;
  top: 100%;
  right: 1rem;
  background: #fff;
  border: 1px solid var(--gy6-border-light);
  padding: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 101;
}

.gy6-search-box.gy6-show {
  display: block;
}

.gy6-search-input {
  border: none;
  outline: none;
  font-size: 0.9rem;
  padding: 0.5rem;
  width: 200px;
  font-family: inherit;
}

/* --- Slogan Bar --- */
.gy6-slogan-bar {
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: "STFangsong", "FangSong", serif;
  font-size: 0.8rem;
  color: var(--gy6-text-secondary);
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--gy6-border-light);
}

/* --- Internal Link Styles --- */
.gy6-internal-link {
  color: var(--gy6-accent-warm);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.gy6-internal-link:hover {
  border-bottom-color: var(--gy6-accent-warm);
  color: var(--gy6-accent-warm);
}

/* --- Tag Styles --- */
.gy6-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  border: 1px solid var(--gy6-border-light);
  border-radius: 2px;
  color: var(--gy6-text-secondary);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* --- FAQ Section --- */
.gy6-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.gy6-faq-item {
  border-bottom: 1px solid var(--gy6-border-light);
  padding: 1.25rem 0;
}

.gy6-faq-question {
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gy6-faq-question::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--gy6-film-gray);
  transition: transform 0.3s ease;
}

.gy6-faq-item.gy6-faq-open .gy6-faq-question::after {
  content: "−";
}

.gy6-faq-answer {
  display: none;
  padding-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--gy6-text-secondary);
  line-height: 1.8;
}

.gy6-faq-item.gy6-faq-open .gy6-faq-answer {
  display: block;
}

/* --- Partners --- */
.gy6-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  opacity: 0.5;
}

.gy6-partner-logo {
  height: 30px;
  filter: grayscale(100%);
}

/* ============================================
   Responsive Breakpoints (Mobile-First)
   ============================================ */

/* 768px - Tablet */
@media (min-width: 768px) {
  .gy6-hero {
    height: 60vh;
  }

  .gy6-hero-title {
    font-size: 2rem;
  }

  .gy6-hero-subtitle {
    font-size: 0.95rem;
  }

  .gy6-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gy6-poster-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .gy6-notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gy6-interview {
    flex-direction: row;
    align-items: flex-start;
  }

  .gy6-interview-portrait {
    max-width: 280px;
    margin: 0;
  }

  .gy6-section {
    padding: 4rem 2rem;
  }

  .gy6-section-title {
    font-size: 1.75rem;
  }

  .gy6-footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .gy6-footer-honors {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }

  .gy6-article-h1 {
    font-size: 2rem;
  }
}

/* 1024px - Desktop */
@media (min-width: 1024px) {
  .gy6-hamburger {
    display: none;
  }

  .gy6-nav-links {
    display: flex;
  }

  .gy6-hero {
    height: 70vh;
  }

  .gy6-hero-title {
    font-size: 2.5rem;
  }

  .gy6-hero-overlay {
    padding: 3rem;
  }

  .gy6-poster-wall {
    grid-template-columns: repeat(5, 1fr);
  }

  .gy6-notes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gy6-section {
    padding: 5rem 2rem;
  }

  .gy6-app-mockup {
    max-width: 300px;
  }

  .gy6-app-title {
    font-size: 2rem;
  }
}

/* 1440px - Large Desktop */
@media (min-width: 1440px) {
  .gy6-section {
    padding: 6rem 2rem;
  }

  .gy6-hero-title {
    font-size: 3rem;
  }

  .gy6-article-container {
    max-width: 960px;
  }
}
