/* ============================================================
   PARAMA CENTRAL PARK – Landing Page Styles
   Tông màu: Đỏ đậm (#79182b) + Vàng (#e4b045)
   ============================================================ */

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

@font-face {
  font-family: 'VIP Alpha Brights';
  src: url('fonts/1FTV-VIP-ALPHA-BRIGHTS.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SVN-Philosopher';
  src: url('fonts/SVN-Philosopher.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #79182b;
  --primary-light: #a02040;
  --accent: #e4b045;
  --accent-light: #f4e388;
  --dark: #1a1a2e;
  --text: #333;
  --text-light: #666;
  --bg: #ffffff;
  --bg-alt: #f9f5f0;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --radius: 12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.7; background: var(--bg); overflow-x: hidden; }
body.data-loading { overflow: hidden !important; height: 100vh !important; }
body.data-loading .loading-overlay { opacity: 1; pointer-events: all; }
body:not(.data-loading) .loading-overlay { opacity: 0; pointer-events: none; }

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── LOADING ── */
.loading-overlay {
  position: fixed; inset: 0; z-index: 99999;
  transition: opacity .5s;
  background: #2d0a14;
}
.loading-spinner { width: 40px; height: 40px; border: 3px solid rgba(255,255,255,.2); border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite; }
.loading-status { color: rgba(255,255,255,.7); margin-top: 16px; font-size: .9rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: var(--transition);
  padding: 0 20px;
}
.navbar.scrolled { background: rgba(121,24,43,.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: #fff; }
.logo-icon { height: 40px; width: auto; }
.nav-menu { flex: 1; display: flex; justify-content: center; }
.nav-menu ul { list-style: none; display: flex; gap: 28px; }
.nav-menu a { color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500; transition: var(--transition); position: relative; }
.nav-menu a:hover { color: var(--accent); }
.nav-cta { background: var(--accent); color: var(--primary) !important; padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: .875rem; transition: var(--transition); }
.nav-cta:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(228,176,69,.4); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; position: relative;
}
.hero::before { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(121,24,43,.7),rgba(26,26,46,.8)); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 900px; padding: 0 20px; }
.hero-brand-wrap { margin-bottom: 25px; display: flex; flex-direction: column; align-items: center; }
.hero-brand-logo { height: 160px; margin-bottom: 15px; }
.hero-brand-name { font-family: 'SVN-Philosopher', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); line-height: 1.1; background: linear-gradient(90deg, #FCE1A4, #F79F79); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; font-weight: normal; letter-spacing: 1px; }
.hero-title-main { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: -5px; text-shadow: 0 4px 30px rgba(0,0,0,.3); text-transform: uppercase; position: relative; z-index: 2; }
.hero-title-cursive { font-family: 'VIP Alpha Brights', cursive; font-size: clamp(3.5rem, 8vw, 6.5rem); line-height: 1.2; display: inline-block; background: linear-gradient(90deg, #f36c84, #f9c084); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: none; margin-bottom: 25px; position: relative; z-index: 3; transform: rotate(-5deg); padding-right: 20px; }
.hero-subtitle { font-family: var(--font-body); font-size: clamp(0.95rem, 1.5vw, 1.15rem); font-weight: 700; text-transform: uppercase; opacity: .9; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; letter-spacing: 1px; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: .95rem; transition: var(--transition); cursor: pointer; border: none; font-family: var(--font-body); }
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.section-tag { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); background: rgba(121,24,43,.08); padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-tag.light { color: var(--accent); background: rgba(228,176,69,.15); }
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--primary); margin-bottom: 16px; line-height: 1.3; }
.section-title.light { color: var(--accent-light); }
.section-desc { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }
.section-desc.center { text-align: center; }

/* ── HIGHLIGHTS ── */
.section-highlights { background: linear-gradient(135deg, #f8f4ef 0%, #eee8df 50%, #f5f0ea 100%); }

/* ── OVERVIEW ── */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.overview-content .section-title { text-align: left; }
.overview-content .section-desc { text-align: justify; }
.overview-img-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.overview-img-gallery img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.project-info-list { list-style: none; margin-top: 24px; }
.project-info-list li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: .95rem; }
.project-info-list li strong { color: var(--primary); font-weight: 600; }
.video-embed { margin-top: 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-embed iframe { width: 100%; aspect-ratio: 16/9; border: none; }
/* ── INVESTOR GALLERY ── */
.section-about-investor { background: var(--bg-alt); }
.investor-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.investor-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  background: #fff;
}
.investor-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.investor-item img { width: 100%; height: auto; display: block; }
.investor-caption {
  padding: 14px 18px;
  line-height: 1.5;
}
.investor-caption h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.investor-caption p {
  font-size: .85rem;
  color: var(--text-light);
  margin: 0;
}
/* Lightbox */
.investor-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.85);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.investor-lightbox.show { opacity: 1; pointer-events: auto; }
.investor-lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,.5); }
.investor-lightbox .lb-caption { color: #fff; font-size: 1.1rem; font-weight: 500; text-align: center; max-width: 600px; }
.investor-lightbox .lb-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 2rem; cursor: pointer; }


/* ── LOCATION ── */
.section-location { background: var(--bg); }
.location-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── AMENITIES ── */
.section-amenities { background: var(--bg-alt); }
.amenities-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.amenity-img-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.amenity-img-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.amenity-img-item:hover img { transform: scale(1.05); }

/* ── DESIGN ── */
.section-design { background: var(--primary); color: #fff; }
.design-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 50px; align-items: center; }
.design-text h2 { color: var(--accent-light); font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 24px; line-height: 1.3; }
.design-text p { color: rgba(255,255,255,.85); margin-bottom: 16px; line-height: 1.8; text-align: justify; }
.design-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-height: 600px; object-fit: cover; }

/* ── FLOORPLAN ── */
.section-floorplan { background: var(--bg); }
.floorplan-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── PROGRESS ── */
.section-progress { background: var(--bg-alt); }
.progress-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.progress-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.progress-img img { width: 100%; height: 240px; object-fit: cover; transition: transform .4s; }
.progress-img:hover img { transform: scale(1.05); }

/* ── BOTTOM IMG ── */
.section-bottom-img {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #79182b;
  padding: 60px 20px;
}
.section-bottom-img img {
  max-width: 1160px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ── PROJECTS ── */
.section-projects { background: var(--bg); }
.projects-list { display: flex; flex-direction: column; gap: 64px; }
.project-item { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.project-item.reverse { grid-template-columns: 1fr 1.2fr; }
.project-item.reverse .project-img { order: 2; }
.project-item.reverse .project-info { order: 1; }
.project-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: #eee; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-img:hover img { transform: scale(1.05); }
.project-tag { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); background: rgba(121,24,43,.08); padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.project-info h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 16px; color: var(--primary); }
.project-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 24px; font-size: 1rem; }

/* ── CONTACT ── */
.section-contact { background: var(--bg-alt); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h2 { color: var(--primary); font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; }
.contact-details { margin-top: 24px; }
.cd-item { display: flex; gap: 12px; align-items: center; padding: 12px 0; font-size: .95rem; }
.cd-icon { font-size: 1.2rem; }
.contact-form { background: #fff; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 4px; }
.contact-form .form-sub { color: var(--text-light); font-size: .85rem; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-size: .95rem; font-family: var(--font-body); transition: var(--transition); background: #fafafa;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(121,24,43,.1); outline: none; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: 12px; text-align: center; }
.req { color: #ef4444; }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: #fff; font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; }
.footer-links h4 { color: #fff; font-size: .9rem; margin-bottom: 12px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; text-align: center; font-size: .8rem; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: -80px; left: 50%; transform: translateX(-50%);
  background: #166534; color: #fff; padding: 14px 28px; border-radius: 50px;
  font-size: .9rem; font-weight: 600; z-index: 9999; transition: .4s ease;
  box-shadow: var(--shadow-lg);
}
.toast.show { bottom: 24px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s ease; padding: 20px; }
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-content { background: #fff; width: 100%; max-width: 400px; border-radius: 20px; padding: 30px; position: relative; transform: translateY(20px); transition: 0.3s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.modal-overlay.show .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 15px; background: #f5f5f7; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); transition: 0.2s; }
.modal-close:hover { background: #e5e5ea; color: #ff3b30; }
.modal-content h3 { font-family: var(--font-heading); color: var(--primary); font-size: 1.5rem; margin-bottom: 8px; text-align: center; }
.modal-content .form-sub { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }

/* ── FLOATING BUTTONS ── */
.floating-contact { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.float-btn {
  display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 50px;
  font-weight: 700; font-size: .85rem; box-shadow: var(--shadow-lg); transition: var(--transition);
  text-decoration: none; border: none; cursor: pointer; font-family: var(--font-body);
}
.float-btn.price-btn { background: var(--accent); color: var(--primary); animation: pulseFab 2s infinite; }
.float-btn.price-btn:hover { background: #f0c360; }
@keyframes pulseFab { 0% { box-shadow: 0 0 0 0 rgba(228, 176, 69, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(228, 176, 69, 0); } 100% { box-shadow: 0 0 0 0 rgba(228, 176, 69, 0); } }
.float-btn.phone { background: var(--primary); color: #fff; }
.float-btn.zalo { background: #0068ff; color: #fff; }
.float-btn:hover { transform: translateY(-3px); }
.btn-icon { font-size: 1.1rem; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--primary); flex-direction: column; justify-content: flex-start; padding: 80px 30px; transition: var(--transition); z-index: 999; }
  .nav-menu.open { right: 0; }
  .nav-menu ul { flex-direction: column; gap: 20px; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .overview-grid, .design-grid, .policy-grid, .contact-grid, .project-item, .project-item.reverse { grid-template-columns: 1fr; }
  .project-item.reverse .project-img, .project-item.reverse .project-info { order: unset; }
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-btn .btn-text { display: none; }
  .investor-gallery { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

@media (max-width: 576px) {
  .investor-gallery { grid-template-columns: 1fr; }
}

/* ── IMAGE LIGHTBOX MODAL ── */
.image-modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(10, 18, 32, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-modal-overlay.open { display: flex; opacity: 1; }
.image-modal-box {
  position: relative; max-width: 900px; width: 100%;
  background: #0f1b2d; border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: scale(0.88) translateY(24px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255,255,255,0.08);
}
.image-modal-overlay.open .image-modal-box { transform: scale(1) translateY(0); }
.image-modal-close {
  position: absolute; top: 14px; right: 16px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; line-height: 1;
}
.image-modal-close:hover { background: rgba(255,255,255,0.22); transform: scale(1.12); }
.image-modal-img-wrap {
  width: 100%; max-height: 68vh; overflow: hidden;
  background: #0a1220; display: flex; align-items: center; justify-content: center;
}
.image-modal-img-wrap img {
  width: 100%; height: auto; max-height: 68vh; object-fit: contain;
  display: block; background: none; min-height: unset;
}
.image-modal-caption {
  padding: 24px 32px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2b40 100%);
}
.image-modal-caption h3 {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 8px; letter-spacing: -0.3px;
}
.image-modal-caption p {
  font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0;
}
@media (max-width: 600px) {
  .image-modal-img-wrap { max-height: 52vh; }
  .image-modal-caption { padding: 18px 20px 22px; }
  .image-modal-caption h3 { font-size: 1.1rem; }
}

/* ── YOUTUBE FACADE ── */
.yt-facade {
  position: relative;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000 center/cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .3s, box-shadow .3s;
}
.yt-facade:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(255, 0, 0, .85);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.yt-facade:hover .yt-play-btn {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
}
.yt-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  padding: 40px 16px 14px;
  z-index: 1;
}
.yt-info-content {
  max-width: 100%;
}
.yt-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-channel {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .yt-title { font-size: .85rem; }
  .yt-channel { font-size: .72rem; }
  .yt-info-bar { padding: 30px 12px 10px; }
  .yt-play-btn { width: 56px; height: 40px; }
  .yt-play-btn svg { width: 20px; height: 20px; }
}
