/* ===========================
   SAMI BITAR STUDIO — STYLES
   =========================== */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e2c478;
  --white: #f5f5f0;
  --gray: #888;
  --border: rgba(201,168,76,0.25);
  --nav-height: 75px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ---- NAVBAR ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  backdrop-filter: blur(10px);
}

.nav-logo img {
  height: 50px;
  filter: brightness(1.1);
}

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--dark2);
  border: 1px solid var(--border);
  min-width: 190px;
  list-style: none;
  z-index: 999;
  padding-top: 4px;
}
/* Invisible bridge between nav link and menu to prevent gap-triggered close */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 10px;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 10px 20px;
  font-size: 12px; letter-spacing: 1.2px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  overflow-y: auto;
  padding: 20px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 30px;
  color: var(--white); text-decoration: none;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 40px; }
.mobile-menu a.sub { padding-left: 50px; font-size: 12px; color: var(--gray); }
.mobile-menu a.sub:hover { color: var(--gold); padding-left: 60px; }

/* ---- PAGE WRAPPER ---- */
.page-content {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}

/* Animated lines */
.hero-lines {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-lines span {
  position: absolute; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
  animation: lineFall 8s infinite;
  opacity: 0;
}
.hero-lines span:nth-child(1) { left: 15%; height: 300px; animation-delay: 0s; }
.hero-lines span:nth-child(2) { left: 35%; height: 200px; animation-delay: 2s; }
.hero-lines span:nth-child(3) { left: 55%; height: 250px; animation-delay: 4s; }
.hero-lines span:nth-child(4) { left: 75%; height: 180px; animation-delay: 6s; }
.hero-lines span:nth-child(5) { left: 90%; height: 220px; animation-delay: 1s; }

@keyframes lineFall {
  0% { top: -300px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100vh; opacity: 0; }
}

.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 8px 20px;
  animation: fadeUp 1s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-title em {
  font-style: italic; color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 16px; font-weight: 300; letter-spacing: 2px;
  color: rgba(245,245,240,0.6);
  max-width: 500px;
  animation: fadeUp 1s 0.4s ease both;
}

.hero-cta {
  display: flex; gap: 16px;
  animation: fadeUp 1s 0.6s ease both;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s;
  cursor: pointer; border: none;
}

.btn-gold {
  background: var(--gold); color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s 0.8s ease both;
  z-index: 1;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- SECTION STYLES ---- */
section { padding: 80px 40px; }

.section-header {
  text-align: center; margin-bottom: 60px;
}

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; line-height: 1.1;
}

.section-title .line {
  display: inline-block;
  width: 60px; height: 2px;
  background: var(--gold);
  vertical-align: middle; margin: 0 16px;
}

.section-divider {
  width: 60px; height: 2px; background: var(--gold);
  margin: 20px auto 0;
}

/* ---- HOME: ABOUT CARDS ---- */
.about-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border);
  max-width: 1200px; margin: 0 auto;
}

.about-card {
  background: var(--dark2);
  padding: 50px 40px;
  transition: background 0.3s;
}
.about-card:hover { background: #1e1e1e; }

.about-card-icon {
  font-size: 36px; margin-bottom: 20px;
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  margin-bottom: 16px; color: var(--gold-light);
}

.about-card p {
  font-size: 15px; line-height: 1.8;
  color: rgba(245,245,240,0.7);
}

/* ---- SUBSCRIBE ---- */
.subscribe-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.subscribe-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; margin-bottom: 8px;
}
.subscribe-section p {
  color: var(--gray); margin-bottom: 32px;
}

.subscribe-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
}
.subscribe-form input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--border); border-right: none;
  color: var(--white);
  padding: 14px 20px;
  font-family: 'Raleway', sans-serif; font-size: 14px;
  outline: none;
}
.subscribe-form input:focus { border-color: var(--gold); }
.subscribe-form button {
  background: var(--gold); color: var(--black);
  border: none; padding: 14px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.3s;
}
.subscribe-form button:hover { background: var(--gold-light); }

/* ---- SOCIAL ---- */
.social-section { text-align: center; }
.social-links {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-top: 32px;
}

.social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--white); text-decoration: none;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 80px 40px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--dark2), var(--black));
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.page-hero h1 .accent { color: var(--gold); }
.page-hero .subtitle {
  margin-top: 16px;
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray);
}

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3px;
  max-width: 1400px; margin: 0 auto;
}

.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark2);
}

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

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

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}

/* ---- ARTISTS GALLERY ---- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
}

.artist-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.artist-card img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s;
}
.artist-card:hover img { transform: scale(1.04); }

.artist-name {
  padding: 16px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
  color: var(--gold-light);
  border-top: 1px solid var(--border);
}

/* ---- VIDEOS ---- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px; margin: 0 auto;
}

.video-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s;
}
.video-card:hover { transform: translateY(-4px); }

.video-embed {
  position: relative; padding-top: 56.25%;
}
.video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

.video-info {
  padding: 20px;
}
.video-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--gold-light);
  margin-bottom: 6px;
}
.video-info p {
  font-size: 13px; color: var(--gray);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ---- DOWNLOADS ---- */
.downloads-intro {
  text-align: center; max-width: 600px; margin: 0 auto 50px;
  color: rgba(245,245,240,0.7); font-size: 16px; line-height: 1.8;
}

.downloads-list {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}

.download-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 20px 28px;
  transition: border-color 0.3s, background 0.3s;
}
.download-item:hover {
  border-color: var(--gold);
  background: #1e1a10;
}

.download-item-info {
  display: flex; align-items: center; gap: 16px;
}

.download-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.download-item-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; margin-bottom: 2px;
}
.download-item-info span {
  font-size: 12px; color: var(--gray);
  letter-spacing: 1px; text-transform: uppercase;
}

.download-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--gold); color: var(--black);
  text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.3s;
  white-space: nowrap;
}
.download-btn:hover { background: var(--gold-light); }

/* ---- BUNDLES/OFFERS ---- */
.offers-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; text-align: center;
  margin-bottom: 40px; color: var(--gold-light);
  display: flex; align-items: center; gap: 20px;
  justify-content: center;
}
.offers-section-title::before, .offers-section-title::after {
  content: ''; flex: 1; max-width: 120px; height: 1px;
  background: var(--border);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto 60px;
}

.offer-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.offer-card.highlight {
  border-color: var(--gold);
}
.offer-card.highlight::before {
  content: '50% OFF';
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px;
  z-index: 1;
}

.offer-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}

.offer-card-body { padding: 20px; }
.offer-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; margin-bottom: 6px; color: var(--white);
}
.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--gold);
  margin-bottom: 10px;
}
.offer-card-body p {
  font-size: 13px; line-height: 1.7; color: rgba(245,245,240,0.6);
}

/* ---- ABOUT PAGE ---- */
.about-profile {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}

.profile-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-bottom: none;
}
.profile-row:last-child { border-bottom: 1px solid var(--border); }

.profile-row.reverse { direction: rtl; }
.profile-row.reverse > * { direction: ltr; }

.profile-img { overflow: hidden; }
.profile-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.profile-text {
  padding: 50px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--dark2);
}

.profile-text .role-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

.profile-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; margin-bottom: 20px; color: var(--gold-light);
}

.profile-text p {
  font-size: 15px; line-height: 1.9;
  color: rgba(245,245,240,0.75);
  margin-bottom: 12px;
}

.artist-links { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.artist-links a {
  color: var(--gold); text-decoration: none; font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.artist-links a::before { content: '→'; }
.artist-links a:hover { color: var(--gold-light); }

/* ---- CONTACT ---- */
.contact-wrapper {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border);
}

.contact-form-side, .contact-info-side {
  background: var(--dark2);
  padding: 60px;
}

.contact-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; display: block;
}

.contact-form-side h2, .contact-info-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; margin-bottom: 36px;
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray); margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 130px; resize: vertical; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-detail-text strong {
  display: block; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.contact-detail-text p, .contact-detail-text a {
  font-size: 14px; color: rgba(245,245,240,0.75);
  text-decoration: none; line-height: 1.7;
}
.contact-detail-text a:hover { color: var(--gold); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white; text-decoration: none;
  padding: 14px 28px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 16px;
  transition: background 0.3s;
}
.whatsapp-btn:hover { background: #1ebe57; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
}

.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  list-style: none;
}

.footer-links a {
  color: rgba(245,245,240,0.5); text-decoration: none;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 12px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px; color: rgba(245,245,240,0.3);
  letter-spacing: 1px;
}

.footer-logo img { height: 40px; opacity: 0.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 60px 20px; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-form-side, .contact-info-side { padding: 40px 24px; }

  .profile-row { grid-template-columns: 1fr; }
  .profile-row.reverse { direction: ltr; }
  .profile-text { padding: 32px 24px; }

  .subscribe-form { flex-direction: column; }
  .subscribe-form input { border-right: 1px solid var(--border); border-bottom: none; }
}

@media (max-width: 600px) {
  .hero-title { letter-spacing: -1px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 20px 40px; }
}


/* ===== FIX: Hero background image ===== */
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../assets/images/console-room.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.7);
  z-index: 0;
}

/* ===== FIX: YouTube card (no iframe) ===== */
.yt-card {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  text-decoration: none;
}
.yt-card img.yt-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
  filter: brightness(0.85);
}
.yt-card:hover img.yt-thumb {
  transform: scale(1.04);
  filter: brightness(0.6);
}
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  background: #ff0000;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.yt-card:hover .yt-play-btn {
  background: #cc0000;
  transform: translate(-50%, -50%) scale(1.1);
}
.yt-play-btn svg {
  width: 24px; height: 24px; fill: white; margin-left: 4px;
}
.yt-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: rgba(255,255,255,0.8);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
}
