@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+SC:wght@300;400;500;600;700;900&display=swap');

:root {
  --blue: #4655fc;
  --yellow: #ffe600;
  --dark: #141526;
  --dark2: #1a1b30;
  --dark3: #22243d;
  --white: #ffffff;
  --gray: #a0a3b5;
  --light: #e8e9f0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  background: rgba(20, 21, 38, 0.7);
  border-bottom: 1px solid rgba(70, 85, 252, 0.1);
}
.navbar.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(20, 21, 38, 0.95);
  border-bottom: 1px solid rgba(70, 85, 252, 0.3);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 36px; width: 36px; }
.nav-logo span { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: 2px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--gray); text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--blue); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.5rem; background: var(--blue); color: var(--white);
  border: none; border-radius: 8px; font-weight: 600; font-size: 0.875rem;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.nav-cta:hover { background: #5a67ff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(70, 85, 252, 0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }

/* ===== HERO — TV STATION VIBE ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 6rem 2rem 4rem; overflow: hidden;
}

/* Animated gradient blobs */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-bg .blob-1 {
  width: 500px; height: 500px; top: -10%; left: -5%;
  background: var(--blue); animation-delay: 0s;
}
.hero-bg .blob-2 {
  width: 400px; height: 400px; top: 10%; right: -5%;
  background: var(--yellow); opacity: 0.2; animation-delay: -3s;
  animation-duration: 10s;
}
.hero-bg .blob-3 {
  width: 350px; height: 350px; bottom: -5%; left: 30%;
  background: #8b5cf6; opacity: 0.25; animation-delay: -5s;
  animation-duration: 12s;
}
@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

/* TV scan lines overlay */
.hero-scanlines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

/* Animated grid */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(70, 85, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 85, 252, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating signal bars */
.hero-signals {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.signal-bar {
  position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; animation: signalSweep 4s ease-in-out infinite;
}
.signal-bar:nth-child(1) { top: 20%; width: 100%; animation-delay: 0s; }
.signal-bar:nth-child(2) { top: 45%; width: 100%; animation-delay: 1.5s; }
.signal-bar:nth-child(3) { top: 70%; width: 100%; animation-delay: 3s; }
@keyframes signalSweep {
  0% { opacity: 0; transform: translateX(-100%); }
  30% { opacity: 0.6; }
  100% { opacity: 0; transform: translateX(100%); }
}

/* Corner brackets (broadcast frame) */
.hero-frame {
  position: absolute; inset: 40px; z-index: 1; pointer-events: none;
}
.hero-frame .corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(70, 85, 252, 0.3); border-style: solid; border-width: 0;
}
.hero-frame .corner.tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.hero-frame .corner.tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.hero-frame .corner.bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.hero-frame .corner.br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

/* LIVE indicator in corner */
.hero-live {
  position: absolute; top: 120px; left: 60px; z-index: 5;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; color: #ff3b3b;
  text-transform: uppercase;
}
.hero-live .rec-dot {
  width: 10px; height: 10px; background: #ff3b3b; border-radius: 50%;
  animation: recBlink 1.2s ease-in-out infinite;
}
@keyframes recBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* Timecode in corner */
.hero-timecode {
  position: absolute; bottom: 60px; right: 60px; z-index: 2;
  font-family: 'Courier New', monospace; font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3); letter-spacing: 2px;
}

/* Split layout */
.hero-split {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1300px; width: 100%; gap: 2rem;
}
.hero-content {
  text-align: left; max-width: 560px; flex-shrink: 0;
}
.hero-globe {
  flex: 1; min-height: 500px; max-width: 600px; position: relative;
}
.hero-globe canvas {
  display: block; width: 100% !important; height: 100% !important;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.4rem 1.2rem; border-radius: 100px;
  background: rgba(70, 85, 252, 0.15); border: 1px solid rgba(70, 85, 252, 0.3);
  font-size: 0.8rem; color: #aab4ff; font-weight: 600; margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: #00ff88; border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem); font-weight: 900;
  line-height: 1.12; margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue) 0%, #8b5cf6 40%, var(--yellow) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray); max-width: 700px;
  margin: 0 auto 2.5rem; line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-primary {
  padding: 0.9rem 2.5rem; background: var(--blue); color: var(--white);
  border: none; border-radius: 12px; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #5a67ff; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(70, 85, 252, 0.4); }
.btn-secondary {
  padding: 0.9rem 2.5rem; background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white);
  border-radius: 12px; font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-3px); }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; margin-top: 4rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--yellow); }
.hero-stat .label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* ===== SECTIONS COMMON ===== */
section { padding: 6rem 2rem; position: relative; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-tag {
  display: inline-block; padding: 0.3rem 1rem; border-radius: 100px;
  background: rgba(70, 85, 252, 0.1); border: 1px solid rgba(70, 85, 252, 0.2);
  font-size: 0.75rem; font-weight: 600; color: var(--blue); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 1rem;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.section-header p { color: var(--gray); font-size: 1.05rem; line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== ABOUT ===== */
#about { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.about-card {
  background: rgba(34, 36, 61, 0.6); border: 1px solid rgba(70, 85, 252, 0.1);
  border-radius: 20px; padding: 2.5rem; transition: all 0.4s;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.about-card:hover { transform: translateY(-8px); border-color: rgba(70, 85, 252, 0.3); }
.about-card:hover::before { transform: scaleX(1); }
.about-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(70, 85, 252, 0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.about-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.about-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }

/* ===== SCHEDULE ===== */
#schedule { background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%); }
.schedule-timeline { max-width: 900px; margin: 0 auto; position: relative; }
.schedule-timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--yellow), var(--blue));
}
.schedule-item {
  display: flex; gap: 2rem; padding: 1.5rem 0; position: relative;
  opacity: 0; transform: translateX(-20px);
  animation: slideIn 0.5s ease forwards;
}
.schedule-item:nth-child(1) { animation-delay: 0.1s; }
.schedule-item:nth-child(2) { animation-delay: 0.15s; }
.schedule-item:nth-child(3) { animation-delay: 0.2s; }
.schedule-item:nth-child(4) { animation-delay: 0.25s; }
.schedule-item:nth-child(5) { animation-delay: 0.3s; }
.schedule-item:nth-child(6) { animation-delay: 0.35s; }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
.schedule-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--blue);
  border: 3px solid var(--dark); flex-shrink: 0; margin-top: 6px;
  position: relative; z-index: 1; left: 15px;
}
.schedule-content { flex: 1; }
.schedule-time { font-size: 0.8rem; color: var(--yellow); font-weight: 700; margin-bottom: 0.3rem; letter-spacing: 1px; }
.schedule-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.schedule-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== PROGRAMS ===== */
#programs { background: var(--dark); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.program-card {
  background: rgba(34, 36, 61, 0.5); border: 1px solid rgba(70, 85, 252, 0.1);
  border-radius: 16px; padding: 2rem; transition: all 0.4s;
}
.program-card:hover { border-color: rgba(255, 230, 0, 0.3); transform: translateY(-5px); }
.program-day {
  font-size: 0.75rem; font-weight: 700; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem;
}
.program-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.program-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ===== COMMUNITY ===== */
#community { background: var(--dark2); }
.community-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.tier-card {
  background: rgba(34, 36, 61, 0.6);
  border: 1px solid rgba(70, 85, 252, 0.12);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s;
  text-align: center;
}
.tier-card:hover {
  transform: translateY(-8px);
  border-color: rgba(70, 85, 252, 0.3);
}
.tier-card.featured {
  border-color: var(--blue);
  position: relative;
  background: linear-gradient(135deg, rgba(70, 85, 252, 0.12), rgba(34, 36, 61, 0.8));
  transform: scale(1.03);
}
.tier-card.featured::before {
  content: '推荐';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 100px; letter-spacing: 1px;
}
.tier-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 1rem;
}
.tier-badge.free { background: rgba(0, 255, 136, 0.12); color: #00ff88; }
.tier-badge.basic { background: rgba(70, 85, 252, 0.15); color: var(--blue); }
.tier-badge.pro { background: rgba(255, 230, 0, 0.12); color: var(--yellow); }
.tier-card h3 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem;
}
.tier-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  padding: 0;
}
.tier-card ul li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier-card ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CTA ===== */
#cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 50%, var(--dark) 100%);
  text-align: center; padding: 8rem 2rem;
}
.cta-box {
  max-width: 800px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(70, 85, 252, 0.1), rgba(255, 230, 0, 0.05));
  border: 1px solid rgba(70, 85, 252, 0.2); border-radius: 24px; padding: 4rem;
}
.cta-box h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
footer {
  padding: 3rem 2rem; border-top: 1px solid rgba(70, 85, 252, 0.1);
  background: var(--dark);
}
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 28px; width: 28px; }
.footer-logo span { font-weight: 700; letter-spacing: 2px; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: var(--gray); font-size: 0.78rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
  .hero-split { gap: 1rem; }
  .hero-content { max-width: 480px; }
  .hero-globe { max-width: 450px; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(20, 21, 38, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid rgba(70, 85, 252, 0.2);
  }
  .navbar { padding: 0.8rem 1rem; }
  .navbar.scrolled { padding: 0.6rem 1rem; }

  /* Hero */
  .hero { padding: 5rem 1.2rem 2rem; min-height: auto; }
  .hero-split {
    flex-direction: column-reverse; text-align: center; gap: 1rem;
  }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-globe { min-height: 300px; max-width: 100%; width: 100%; }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { flex-direction: row; gap: 1.5rem; margin-top: 2rem; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-stat .label { font-size: 0.7rem; }
  .hero-badge { font-size: 0.7rem; margin-bottom: 1rem; padding: 0.3rem 1rem; }

  /* Broadcast overlays */
  .hero-frame { inset: 12px; }
  .hero-frame .corner { width: 24px; height: 24px; }
  .hero-live { top: 80px; left: 20px; font-size: 0.6rem; }
  .hero-timecode { bottom: 16px; right: 16px; font-size: 0.6rem; }
  .hero-scanlines { display: none; }

  /* Sections */
  section { padding: 3.5rem 1.2rem; }
  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.6rem; }
  .section-header p { font-size: 0.9rem; }

  /* Cards */
  .about-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-card { padding: 1.8rem; border-radius: 16px; }
  .about-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 1rem; }

  /* Schedule */
  .schedule-timeline::before { left: 12px; }
  .schedule-item { gap: 1.2rem; padding: 1rem 0; }
  .schedule-dot { left: 7px; width: 10px; height: 10px; }
  .schedule-time { font-size: 0.72rem; }
  .schedule-name { font-size: 0.95rem; }
  .schedule-desc { font-size: 0.8rem; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr; gap: 1rem; }
  .program-card { padding: 1.5rem; }

  /* Community */
  .community-tiers { grid-template-columns: 1fr; gap: 1.2rem; }
  .tier-card { padding: 2rem; }
  .tier-card.featured { transform: scale(1); }

  /* CTA */
  #cta { padding: 4rem 1.2rem; }
  .cta-box { padding: 2.5rem 1.5rem; border-radius: 18px; }
  .cta-box h2 { font-size: 1.5rem; }

  /* Footer */
  .footer-content { flex-direction: column; text-align: center; gap: 1.2rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ===== RESPONSIVE: SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .hero-content p { font-size: 0.88rem; }
  .hero-globe { min-height: 260px; }
  .hero-stats { gap: 1rem; }
  .hero-stat .num { font-size: 1.2rem; }
  .section-header h2 { font-size: 1.4rem; }
  .about-card { padding: 1.4rem; }
  .about-card h3 { font-size: 1.05rem; }
  .tier-card { padding: 1.5rem; }
  .tier-card h3 { font-size: 1.1rem; }
  .cta-box { padding: 2rem 1.2rem; }
  .hero-frame { display: none; }
  .hero-live { top: 70px; left: 12px; }
  .hero-timecode { bottom: 10px; right: 12px; }
}

