/* VCC Daventry — faithful clone of React/Tailwind site */
/* Navy: #1e3a5f  Gold: #d4a853  Secondary: #f3f4f6 */

:root {
  --navy:        #1e3a5f;
  --navy-light:  #2d5a8f;
  --gold:        #d4a853;
  --gold-light:  #ddb96a;
  --gold-dark:   #b8882f;
  --bg:          #ffffff;
  --secondary:   #f3f4f6;
  --muted-fg:    #6b7280;
  --foreground:  #1e3a5f;
  --border:      #e5e7eb;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--foreground); overflow-x: hidden; }

/* ── LAYOUT ── */
.container-church { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.section-padding   { padding: 6rem 1.5rem; }
@media (min-width: 768px) { .section-padding { padding: 8rem 1.5rem; } }

/* ── TYPOGRAPHY ── */
.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 9999px;
  background-color: var(--gold); color: var(--navy);
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 14px rgba(212,168,83,.35);
}
.btn-gold:hover { background-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,83,.45); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 9999px;
  background-color: var(--navy); color: #fff;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-navy:hover { background-color: var(--navy-light); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,.35); color: #fff;
  text-decoration: none; background: transparent;
  transition: all 0.3s;
}
.btn-outline-white:hover { background-color: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ── ICON BOXES ── */
.icon-box    { width: 3rem;  height: 3rem;  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; background-color: rgba(212,168,83,.1); }
.icon-box-lg { width: 4rem;  height: 4rem;  border-radius: 1rem;    display: flex; align-items: center; justify-content: center; background-color: rgba(30,58,95,.05); }
.icon-box-lg:hover { background-color: rgba(212,168,83,.1); }

/* ── SOCIAL ICONS ── */
.social-icon { width: 2.5rem; height: 2.5rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; background-color: rgba(255,255,255,.1); transition: background-color .3s; }
.social-icon:hover { background-color: var(--gold); color: var(--navy) !important; }

/* ── INFO CARD ── */
.info-card { border-radius: 1rem; padding: 1.5rem; background-color: var(--secondary); }

/* ── HERO OVERLAY ── */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,58,95,.8), rgba(30,58,95,.7), rgba(30,58,95,.9));
}

/* ── NAVBAR ── */
#site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }

.navbar {
  background: transparent;
  transition: all 0.5s;
  padding: 1.25rem 0;
  position: relative;
}
.navbar.scrolled,
.navbar.solid {
  background-color: rgba(30,58,95,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
  padding: 0.75rem 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Desktop items */
.nav-desktop { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,.9); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; background: none; border: none;
  cursor: pointer; font-family: inherit;
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Dropdown */
.nav-item { position: relative; }

.dropdown {
  position: absolute; top: calc(100% + 0.25rem); left: 0;
  background: #fff; border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  padding: 0.5rem 0; min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(0.5rem);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.nav-item:hover .dropdown,
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
  display: block; padding: 0.75rem 1.25rem;
  color: var(--navy); font-size: 0.875rem; text-decoration: none;
  transition: background-color .2s, color .2s;
}
.dropdown a:hover { background-color: rgba(30,58,95,.05); color: var(--gold); }

/* Chevron */
.chevron-icon { width: 1rem; height: 1rem; transition: transform .3s; }
.nav-item.open .chevron-icon { transform: rotate(180deg); }

/* Hamburger */
.hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: #fff; }

/* Admin button & panel */
.nav-right { display: flex; align-items: center; gap: .125rem; }
.admin-btn { background: none; border: none; cursor: pointer; padding: .5rem; color: rgba(255,255,255,.25); display: flex; transition: color .2s; }
.admin-btn:hover, .admin-btn.active { color: rgba(255,255,255,.6); }
.admin-btn.logged-in { color: var(--gold); }
.admin-panel {
  position: absolute; right: 1.5rem; top: calc(100% + .25rem);
  width: 260px; background: #fff; border-radius: .75rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.2); padding: 1.5rem;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .18s, transform .18s; z-index: 200;
}
.admin-panel.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.admin-panel-title { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 1rem; }
.admin-panel input {
  display: block; width: 100%; padding: .6rem .75rem; box-sizing: border-box;
  border: 1px solid var(--border); border-radius: .5rem; margin-bottom: .75rem;
  font-family: inherit; font-size: .875rem; color: var(--foreground); outline: none;
  transition: border-color .2s;
}
.admin-panel input:focus { border-color: var(--navy); }
.admin-panel button[type=submit] {
  display: block; width: 100%; padding: .625rem; background: var(--navy); color: #fff;
  border: none; border-radius: .5rem; font-family: inherit; font-size: .875rem;
  font-weight: 500; cursor: pointer; transition: background .2s;
}
.admin-panel button[type=submit]:hover:not(:disabled) { background: #2d5a8e; }
.admin-panel button[type=submit]:disabled { opacity: .6; cursor: default; }
.admin-error { font-size: .8rem; color: #dc2626; margin-bottom: .75rem; min-height: 1em; }
.admin-logout-btn {
  display: block; width: 100%; padding: .6rem; background: var(--secondary); color: var(--foreground);
  border: none; border-radius: .5rem; font-family: inherit; font-size: .875rem;
  cursor: pointer; transition: background .2s; text-align: center;
}
.admin-logout-btn:hover { background: var(--border); }

/* Mobile menu */
.mobile-menu { display: none; padding-bottom: 1rem; }
.mobile-menu.open { display: block; }

.mobile-link {
  display: block; padding: 0.75rem 0;
  color: rgba(255,255,255,.9); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; transition: color .2s; border: none;
  background: none; width: 100%; text-align: left; font-family: inherit; cursor: pointer;
}
.mobile-link:hover { color: var(--gold); }

.mobile-group-btn {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 0;
  color: rgba(255,255,255,.9); font-size: 0.875rem; font-weight: 500;
  background: none; border: none; width: 100%; cursor: pointer; font-family: inherit;
}
.mobile-group-btn:hover { color: var(--gold); }
.mobile-group-btn .chevron-icon { transition: transform .3s; }
.mobile-group-open .chevron-icon { transform: rotate(180deg); }

.mobile-sub { display: none; padding-left: 1rem; }
.mobile-sub.open { display: block; }
.mobile-sub a { display: block; padding: 0.5rem 0; color: rgba(255,255,255,.7); font-size: 0.875rem; text-decoration: none; }
.mobile-sub a:hover { color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 78vh; min-height: 650px; overflow: hidden;
}
.page-hero.short { height: 50vh; min-height: 400px; }

.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.page-hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 1.5rem;
  max-width: 56rem; margin: 0 auto;
}
.page-hero-content .section-label { color: var(--gold); }
.page-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300; color: #fff;
  margin-bottom: 1.5rem; line-height: 1.1;
}
.page-hero-content p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 42rem; margin: 0 auto; }

/* ── FOOTER ── */
.site-footer { background-color: var(--navy); color: rgba(255,255,255,.7); }

.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
  padding: 4rem 1.5rem 0; max-width: 80rem; margin: 0 auto;
}

.footer-col h4 {
  color: var(--gold); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.05em; margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 0.875rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: rgba(255,255,255,.7); font-size: 0.875rem; line-height: 1.7; }

.footer-service-row { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.footer-service-row svg { flex-shrink: 0; margin-top: 2px; }
.footer-service-row p, .footer-service-row a { font-size: 0.875rem; color: rgba(255,255,255,.7); }
.footer-service-row a { text-decoration: none; transition: color .2s; }
.footer-service-row a:hover { color: var(--gold); }
.footer-service-row strong { display: block; color: #fff; font-size: 0.875rem; margin-bottom: 0.15rem; }

.footer-bottom-bar {
  max-width: 80rem; margin: 3rem auto 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 2rem 1.5rem;
}
.footer-social-row { display: flex; gap: 1rem; margin-top: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hamburger-btn { display: flex; }
  .nav-desktop { display: none; }
}
@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-padding { padding: 4rem 1.25rem; }
}

/* ── MISC ── */
.text-accent { color: var(--gold); }
.text-muted { color: var(--muted-fg); }
.bg-secondary { background-color: var(--secondary); }
.bg-primary { background-color: var(--navy); }
.rounded-2xl { border-radius: 1rem; }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,.1), 0 8px 10px rgba(0,0,0,.06); }
.transition-all { transition: all 0.3s; }

/* Scroll margin for anchors */
section[id] { scroll-margin-top: 80px; }

/* Form styles */
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); margin-bottom: 0.5rem; }
.form-input {
  width: 100%; height: 3.5rem; padding: 0 1rem;
  border: 1px solid var(--border); border-radius: 0.75rem;
  font-family: inherit; font-size: 0.95rem; color: var(--foreground);
  background: #fff; outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,83,.15); }
textarea.form-input { height: auto; padding: 1rem; resize: none; }

/* FAQ accordion */
.faq-item { background: #fff; border-radius: 1rem; box-shadow: 0 1px 4px rgba(0,0,0,.06); overflow: hidden; margin-bottom: 1rem; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--navy); gap: 1rem; }
.faq-q svg { flex-shrink: 0; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--muted-fg); line-height: 1.75; }

/* Listen Again search result card */
.teaching-card {
  background: var(--secondary); border-radius: 1rem; padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; transition: box-shadow .3s;
}
.teaching-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.play-btn { width: 3rem; height: 3rem; border-radius: 9999px; background-color: rgba(212,168,83,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.teaching-theme { font-size: .75rem; font-weight: 500; color: var(--gold); background: rgba(212,168,83,.1); padding: .25rem .75rem; border-radius: 9999px; white-space: nowrap; }

/* Team card */
.team-card { position: relative; background: #fff; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.07); transition: transform .3s, box-shadow .3s, opacity .6s ease, translate .6s ease; opacity: 0; translate: 0 40px; }
.team-card.is-visible { opacity: 1; translate: 0 0; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.12); }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .5s; }
.team-card:hover img { transform: scale(1.05); }

/* Card edit button (admin only) */
.card-edit-btn {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(10,30,60,.7); backdrop-filter: blur(4px);
  border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s, background .2s;
}
.team-card:hover .card-edit-btn { opacity: 1; }
.card-edit-btn:hover { background: var(--navy); }

/* Team admin toolbar */
.team-admin-toolbar { display: none; justify-content: flex-end; max-width: 72rem; margin: 0 auto 1.5rem; }
.btn-admin-add {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.25rem; background: var(--navy); color: #fff;
  border: none; border-radius: .5rem; font-family: inherit;
  font-size: .875rem; font-weight: 500; cursor: pointer; transition: background .2s;
}
.btn-admin-add:hover { background: #2d5a8e; }

/* Team member modal */
.team-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.team-modal-overlay.open { display: flex; }
.team-modal {
  background: #fff; border-radius: 1rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; padding: 2rem;
}
.team-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.team-modal-heading { font-size: 1.125rem; font-weight: 600; color: var(--foreground); }
.team-modal-x {
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--secondary);
  border: none; cursor: pointer; font-size: 1.25rem; line-height: 1; color: var(--muted-fg);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.team-modal-x:hover { background: var(--border); }
.tm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tm-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.tm-label { font-size: .7rem; font-weight: 600; color: var(--muted-fg); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .35rem; }
.tm-req { color: #dc2626; }
.tm-input {
  padding: .6rem .75rem; border: 1px solid var(--border); border-radius: .5rem;
  font-family: inherit; font-size: .875rem; color: var(--foreground);
  outline: none; transition: border-color .2s; background: #fff; box-sizing: border-box; width: 100%;
}
.tm-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,95,.08); }
.tm-textarea { resize: vertical; min-height: 80px; }
.tm-error { font-size: .8rem; color: #dc2626; margin-bottom: .75rem; min-height: 1em; }
.tm-actions { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.tm-btn-cancel {
  padding: .6rem 1.25rem; background: var(--secondary); color: var(--foreground);
  border: none; border-radius: .5rem; font-family: inherit; font-size: .875rem; cursor: pointer; transition: background .2s;
}
.tm-btn-cancel:hover { background: var(--border); }
.tm-btn-save {
  padding: .6rem 1.5rem; background: var(--navy); color: #fff;
  border: none; border-radius: .5rem; font-family: inherit; font-size: .875rem;
  font-weight: 500; cursor: pointer; transition: background .2s;
}
.tm-btn-save:hover:not(:disabled) { background: #2d5a8e; }
.tm-btn-save:disabled { opacity: .6; cursor: default; }
.tm-btn-delete {
  padding: .6rem 1.1rem; background: none; color: #dc2626;
  border: 1px solid #fca5a5; border-radius: .5rem; font-family: inherit;
  font-size: .875rem; cursor: pointer; transition: background .2s, border-color .2s;
}
.tm-btn-delete:hover:not(:disabled) { background: #fef2f2; border-color: #dc2626; }
.tm-btn-delete:disabled { opacity: .5; cursor: default; }
@media (max-width: 520px) { .tm-row { grid-template-columns: 1fr; } }

/* Kindness project card */
.project-card { background: #fff; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.07); transition: all .3s; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.12); }
.project-card img, .project-card .project-card-img img { width: 100%; height: 12rem; object-fit: cover; transition: transform .5s; display: block; }
.project-card:hover img, .project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-img { overflow: hidden; }

/* Event card */
.event-card { background: #fff; border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.07); transition: all .3s; }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.12); }
.event-card-header { background-color: var(--navy); padding: 1rem; text-align: center; }

/* Outreach card */
.outreach-card { background: var(--secondary); border-radius: 1rem; padding: 2rem; transition: box-shadow .3s; }
.outreach-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }

/* Success message */
.success-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 1rem; padding: 2rem; text-align: center; }

/* Fade-in animation (replaces Framer Motion) */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* Series accordion (listen again) */
.series-group + .series-group { margin-top: 3rem; }
.series-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 0 0 1.5rem; font-family: inherit; text-align: left;
}
.series-header h3 { transition: color .2s; }
.series-header:hover h3 { color: var(--gold); }
.series-header .chevron-icon {
  width: 1.5rem; height: 1.5rem; flex-shrink: 0;
  color: var(--navy); transition: transform .3s;
  transform: rotate(-90deg);
}
.series-group.open .series-header .chevron-icon { transform: rotate(0deg); }
.series-body { overflow: hidden; height: 0; transition: height .35s ease; }

/* Teaching card expand */
.teaching-card { cursor: pointer; }
.teaching-card-wrap.open .teaching-card { border-radius: 1rem 1rem 0 0; }
.teaching-chevron { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--muted-fg); transition: transform .3s; }
.teaching-card-wrap.open .teaching-chevron { transform: rotate(180deg); }
.teaching-detail { overflow: hidden; height: 0; transition: height .35s ease; }
.teaching-detail-inner { background: var(--secondary); border-radius: 0 0 1rem 1rem; }
.teaching-detail-content { padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--border); }

/* Play button reset (button element) */
button.play-btn { border: none; cursor: pointer; padding: 0; transition: background-color .2s; }
button.play-btn:hover { background-color: rgba(212,168,83,.35); }

/* YouTube popup modal */
.yt-modal { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.8); align-items: center; justify-content: center; padding: 1.5rem; }
.yt-modal.open { display: flex; }
.yt-modal-box { position: relative; width: min(700px, 90vw); aspect-ratio: 16/9; background: #000; border-radius: .75rem; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.yt-modal-box iframe { width: 100%; height: 100%; border: none; display: block; }
.yt-close-btn { position: absolute; top: .75rem; right: .75rem; width: 2rem; height: 2rem; border-radius: 9999px; background: rgba(0,0,0,.65); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.yt-close-btn:hover { background: rgba(255,255,255,.2); }

@keyframes fadeInUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }
