/* ===== Global Reset & Variables ===== */
:root {
  --coral: #E8734A;
  --coral-light: #F28B6D;
  --coral-dark: #D4603A;
  --peach: #FCEEE8;
  --peach-light: #FFF5F0;
  --cream: #FDF8F4;
  --orange: #F5923A;
  --orange-dark: #E07A20;
  --brown-dark: #3A2A1F;
  --brown: #5C4033;
  --brown-light: #8B6F5E;
  --text-dark: #2C1810;
  --text-body: #4A3728;
  --text-light: #7A6555;
  --white: #FFFFFF;
  --off-white: #FAF7F4;
  --font-heading: 'Noto Serif TC', serif;
  --font-body: 'Noto Sans TC', sans-serif;
  --font-en: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  font-size: 16px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 700;
}

/* ===== Header / Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--coral-light), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--coral);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: block; }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 24, 16, 0.5), rgba(44, 24, 16, 0.7)),
    url('https://images.unsplash.com/photo-1507838153414-b4b713384a76?w=1600&q=80') center/cover;
}

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

.hero-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-light), var(--coral));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 4px 24px rgba(232, 115, 74, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.hero-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.hero-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(232, 115, 74, 0.5);
}

.hero-play-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
  margin-left: 4px;
}

.hero-play-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: white;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--coral);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero { min-height: 500px; }
  .hero h1 { font-size: 1.8rem; }
}

/* ===== Section: Our Story ===== */
.story-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-content .section-title {
  font-size: 2rem;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--coral);
  color: var(--coral);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  margin-top: 8px;
}

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

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

/* ===== Section: Mission & Vision ===== */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: white;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.mission-content {
  position: relative;
  max-width: 800px;
}

.mission-section .section-label {
  color: rgba(255,255,255,0.8);
}

.mission-section .section-title {
  color: white;
  font-size: 2.4rem;
}

.mission-quote {
  background: rgba(255,255,255,0.15);
  border-left: 4px solid white;
  padding: 24px 32px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 32px 0;
}

.mission-text {
  font-size: 0.95rem;
  line-height: 1.9;
  opacity: 0.95;
}

.mission-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0.3;
}

/* ===== Section: Organization Intro ===== */
.org-section {
  padding: 100px 0;
  background: var(--off-white);
}

.org-content {
  max-width: 800px;
  margin-bottom: 48px;
}

.org-content p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 115, 74, 0.1);
}

.stat-number {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== Section: Leadership ===== */
.leadership-section {
  padding: 100px 0;
  background: var(--cream);
}

.leader-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.leader-photo {
  width: 260px;
  height: 320px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.leader-tag {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.leader-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.leader-bio {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-body);
}

@media (max-width: 768px) {
  .leader-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }
  .leader-photo { margin: 0 auto; width: 200px; height: 250px; }
}

/* ===== Section: Impact ===== */
.impact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: white;
  position: relative;
}

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

.impact-section .section-label { color: rgba(255,255,255,0.8); }
.impact-section .section-title { color: white; font-size: 2.2rem; }

.impact-text {
  font-size: 0.95rem;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 16px;
}

.impact-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: rgba(255,255,255,0.15);
  padding: 12px 20px;
  border-radius: 50px;
  width: fit-content;
}

.impact-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.impact-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

/* ===== Section: Partners ===== */
.partners-section {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.partner-logo {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  padding: 16px;
  transition: transform 0.3s;
}

.partner-logo:hover { transform: translateY(-4px); }

.partner-logo-text {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.partner-logo-sub {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ===== Section: Donation ===== */
.donation-section {
  padding: 80px 0;
  background: var(--cream);
}

.donation-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.donation-card h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.donation-card > p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.donation-toggle {
  display: flex;
  background: var(--peach);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 24px;
}

.donation-toggle button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-body);
}

.donation-toggle button.active {
  background: var(--coral);
  color: white;
  box-shadow: var(--shadow-sm);
}

.donation-amounts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.donation-amounts button {
  padding: 12px 24px;
  border: 2px solid #E0D5CC;
  border-radius: 50px;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-body);
}

.donation-amounts button.active,
.donation-amounts button:hover {
  border-color: var(--coral);
  background: var(--coral);
  color: white;
}

.donation-current {
  margin: 24px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.donation-current .amount {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  display: block;
  margin-top: 4px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(232, 115, 74, 0.3);
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 115, 74, 0.4);
}

/* ===== Section: Activity Gallery ===== */
.gallery-section {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

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

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

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

/* ===== Section: Musicians ===== */
.musicians-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.musicians-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.musician-card {
  text-align: center;
}

.musician-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}

.musician-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.musician-card:hover .musician-photo img {
  filter: grayscale(0%);
}

.musician-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.musician-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== Section: FAQ ===== */
.faq-section {
  padding: 80px 0;
  background: var(--peach-light);
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: left;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--peach);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--coral);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, var(--orange), var(--coral-light));
  color: white;
  padding: 60px 0 32px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.7;
}

.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
  padding: 4px 0;
  transition: opacity 0.3s;
}

.footer-links a:hover { opacity: 1; }

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

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

/* ===== Floating Donate Button ===== */
.floating-donate {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 999;
}

.floating-donate a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(232, 115, 74, 0.4);
  transition: all 0.3s;
}

.floating-donate a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(232, 115, 74, 0.5);
}

/* ===== Video Section Page ===== */
.video-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--peach), var(--cream));
  text-align: center;
  margin-top: 72px;
}

.video-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.video-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.video-upload-section {
  padding: 40px 0;
  background: var(--cream);
}

.upload-area {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border: 2px dashed var(--coral-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-area:hover {
  border-color: var(--coral);
  background: var(--peach-light);
}

.upload-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--coral);
}

.upload-area h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.upload-area p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.upload-form {
  max-width: 700px;
  margin: 32px auto 0;
  display: none;
}

.upload-form.visible {
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0D5CC;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.video-preview {
  margin: 16px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  display: none;
}

.video-preview.visible {
  display: block;
}

.video-preview video {
  width: 100%;
  max-height: 400px;
}

/* Video Grid */
.video-grid-section {
  padding: 60px 0 100px;
  background: var(--cream);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.video-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  overflow: hidden;
}

.video-card-thumb video,
.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}

.video-card:hover .video-card-play {
  opacity: 1;
}

.video-card-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232, 115, 74, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card-play-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 3px;
}

.video-card-body {
  padding: 24px;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.video-card-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

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

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
}

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

.video-modal-inner {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.video-modal video {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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