/* ==========================================================================
   LEAL FASHION TV - LUXURY CINEMATIC DESIGN SYSTEM
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-primary: #08080a;
  --bg-secondary: #0d0e12;
  --bg-card: #121319;
  --bg-card-hover: #191b24;
  --bg-glass: rgba(13, 14, 18, 0.75);
  
  --accent-gold: #d4af37;
  --accent-gold-glow: rgba(212, 175, 55, 0.3);
  --accent-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(212, 175, 55, 0.4);
  
  /* Fonts */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-lux: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.2);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--accent-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background: var(--bg-primary);
  color: var(--accent-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f1f5f9;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* Header / Navbar Apple-Style Glassmorphism */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(8, 8, 10, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #d4af37; /* Golden bronze tone matching CineCraft logo */
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}

.logo span {
  color: #ffffff;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #ffffff;
  color: #0b0b0d;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 9999px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  border: none;
  text-decoration: none;
}

.btn-pill-white:hover {
  transform: translateY(-2px) scale(1.02);
  background: #f1f5f9;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.28);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
  background-color: #08080a;
  overflow: hidden;
}

/* Background video styling — full cover & seamless loop */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  pointer-events: none;
  /* Hardware accelerated rendering for smooth playback */
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Exact original hero overlay pattern */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(circle at 50% 50%, rgba(8, 9, 14, 0.4) 0%, rgba(8, 8, 10, 0.82) 65%, #08080a 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.75) 0%, rgba(8, 8, 10, 0.35) 45%, rgba(8, 8, 10, 0.95) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title-exact {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-subtitle-exact {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  margin: 0 auto 32px;
  max-width: 540px;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pill-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 9999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.btn-pill-glass:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero-socials {
  position: absolute;
  bottom: 40px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-socials a {
  transition: var(--transition-fast);
}

.hero-socials a:hover {
  color: var(--accent-gold);
}

/* About Section */
.about-section {
  padding: 120px 0;
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lux);
}

.about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Stats Section ("We Proudly Completed") */
.stats-section {
  padding: 80px 0 120px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition-smooth);
}

.stat-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(40%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.stat-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lux);
}

.stat-card:hover .stat-card-bg {
  opacity: 0.6;
  transform: scale(1.08);
}

.stat-card-content {
  position: relative;
  z-index: 2;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Portfolio Gallery ("Celebrate Our Creations") */
.portfolio-section {
  padding: 100px 0 120px;
  text-align: center;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  color: #ffffff;
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  font-weight: 600;
}

/* Portfolio Infinite Marquee Train Slider (Ultra-Fluid 60FPS) */
.portfolio-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  contain: layout paint;
}

.portfolio-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  animation: marqueeDirect 12s linear infinite;
}

.portfolio-card {
  position: relative;
  width: 290px;
  height: 480px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  cursor: pointer;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

@keyframes marqueeDirect {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.portfolio-card video,
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover img,
.portfolio-card:hover video {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.portfolio-badge {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
}

.portfolio-info {
  text-align: left;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.portfolio-category {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Services Grid ("Creating Unforgettable Visuals") */
.services-section {
  padding: 100px 0 120px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lux);
}

.service-img-wrapper {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 14px;
  color: var(--accent-gold);
}

/* Team Section ("Meet Our Creative Team" - Zero Gap Touching Cards) */
.team-section {
  padding: 100px 0 120px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.team-card {
  position: relative;
  height: 450px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.team-card:last-child {
  border-right: none;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) grayscale(20%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.team-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) grayscale(0%);
}

.team-info {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.95) 100%);
  text-align: left;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.team-name::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #ffffff;
  margin-top: 6px;
}

.team-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Testimonials Section ("What Our Customers Say") */
.testimonials-section {
  padding: 100px 0 120px;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  color: #e2e8f0;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-gold);
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* FAQs Section */
.faq-section {
  padding: 100px 0 120px;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 28px 24px;
}

/* Contact Section ("Feel free to get in touch") */
.contact-section {
  padding: 100px 0 120px;
}

.contact-card {
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, var(--bg-card) 60%);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-shadow: var(--shadow-lux);
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(8, 8, 10, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

/* Footer */
.footer {
  background: #040405;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modal Video Lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2005;
  transition: transform 0.2s ease;
}

.close-modal:hover {
  transform: scale(1.15);
}

/* ==========================================================================
   ATORES MODAL — Fullscreen overlay (hidden by default, opened via navbar)
   ========================================================================== */

/* Prevent background scroll while modal is open */
body.atores-modal-open {
  overflow: hidden;
}

/* The fullscreen overlay */
.atores-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;

  /* Hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity  0.38s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state — added by JS */
.atores-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Sticky modal top bar */
.atores-modal-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.atores-modal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.atores-modal-brand i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.atores-modal-brand-sub {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9rem;
}

/* Close button — X */
.atores-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.atores-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: scale(1.06) rotate(90deg);
}

/* Scrollable content area */
.atores-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  /* Smooth momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
  /* Custom thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}

.atores-modal-body::-webkit-scrollbar {
  width: 4px;
}
.atores-modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.atores-modal-body::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 2px;
}

/* The section inside the modal — reset top padding since bar handles spacing */
.atores-modal-body .atores-section {
  padding-top: 60px;
}

/* ========================================================================== */
/* ==========================================================================
   ATORES / ELENCO SECTION — Interactive Magazine Flipbook + Cast Carousel
   ========================================================================== */

.atores-section {
  padding: 100px 0 120px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture overlay matching site grain */
.atores-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.04) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.03) 0%, transparent 60%);
  pointer-events: none;
}

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

/* ────────────────────────────────────────────────────────────────────────────
   FLIPBOOK / MAGAZINE SPREAD
   ──────────────────────────────────────────────────────────────────────────── */

.flipbook-wrapper {
  position: relative;
  max-width: 1060px;
  margin: 0 auto 52px;
}

.book-scene {
  perspective: 2400px;
  perspective-origin: 50% 40%;
  width: 100%;
}

/* The open book — two pages side by side */
.book-spread {
  display: grid;
  grid-template-columns: 1fr 8px 1fr; /* left | fold | right */
  width: 100%;
  border-radius: 6px 12px 12px 6px;
  overflow: hidden;
  box-shadow:
    -8px 8px 40px -8px rgba(0,0,0,0.9),
     8px 8px 40px -8px rgba(0,0,0,0.9),
     0  40px 80px -20px rgba(0,0,0,0.7),
     0   0  60px -20px rgba(212,175,55,0.08);
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Flip animations — triggered by JS adding/removing classes */
.book-spread.flip-out-right {
  animation: flipOutRight 0.32s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}
.book-spread.flip-out-left {
  animation: flipOutLeft 0.32s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}
.book-spread.flip-in-right {
  animation: flipInRight 0.42s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}
.book-spread.flip-in-left {
  animation: flipInLeft 0.42s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}

@keyframes flipOutRight {
  0%   { opacity: 1; transform: perspective(1200px) rotateY(0deg)   scale(1)    translateX(0); }
  100% { opacity: 0; transform: perspective(1200px) rotateY(-10deg) scale(0.96) translateX(-24px); }
}
@keyframes flipOutLeft {
  0%   { opacity: 1; transform: perspective(1200px) rotateY(0deg)  scale(1)    translateX(0); }
  100% { opacity: 0; transform: perspective(1200px) rotateY(10deg) scale(0.96) translateX(24px); }
}
@keyframes flipInRight {
  0%   { opacity: 0; transform: perspective(1200px) rotateY(10deg) scale(0.96) translateX(24px); }
  100% { opacity: 1; transform: perspective(1200px) rotateY(0deg)  scale(1)    translateX(0); }
}
@keyframes flipInLeft {
  0%   { opacity: 0; transform: perspective(1200px) rotateY(-10deg) scale(0.96) translateX(-24px); }
  100% { opacity: 1; transform: perspective(1200px) rotateY(0deg)   scale(1)    translateX(0); }
}

/* Right-page content crossfade */
@keyframes contentFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.content-fade {
  animation: contentFadeUp 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── LEFT PAGE (Cover) ──────────────────────────────────────────────────── */
.page.page-left {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: #0d0d1a;
}

.page-cover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.82) saturate(1.1);
  transition: background-image 0s; /* swap is instant; animation handles reveal */
}

/* Cinematic gradient over cover photo */
.page-cover-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

/* Magazine branding — top of cover */
.mag-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mag-pre-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}

.mag-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 0.9;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.mag-dot {
  color: var(--accent-gold);
}

.mag-meta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.mag-year-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

.mag-edition {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Pull-quote pills — mid-left of cover */
.cover-pills-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 88px;
}

.cover-pill {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  border-left: 2px solid var(--accent-gold);
  padding: 5px 10px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
  width: fit-content;
}

.cover-pill strong {
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Actor name — pinned to bottom of cover */
.actor-cover-name {
  position: absolute;
  bottom: 42px;
  left: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.8);
  transition: none;
}

.actor-cover-role {
  position: absolute;
  bottom: 24px;
  left: 20px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-folio {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ── BOOK FOLD (spine shadow) ─────────────────────────────────────────── */
.book-fold {
  width: 8px;
  background:
    linear-gradient(to right,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.2)  40%,
      rgba(255,255,255,0.04) 50%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.4)  100%
    );
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

/* ── RIGHT PAGE (Editorial / Bio) ──────────────────────────────────────── */
.page.page-right {
  position: relative;
  height: 580px;
  background: #f3ede3; /* warm ivory — premium editorial feel */
  color: #1a1828;
  overflow: hidden;
}

.page-right-inner {
  position: absolute;
  inset: 0;
  padding: 24px 28px 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Masthead row */
.right-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(26,24,40,0.12);
  padding-bottom: 10px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.right-logo {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1a1828;
}

.right-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: #9b9b9b;
  letter-spacing: 0.08em;
}

/* Large editorial quote — dominant visual element */
.editorial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1a1828;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.editorial-divider {
  width: 40px;
  height: 2px;
  background: #1a1828;
  margin-bottom: 14px;
  flex-shrink: 0;
}

/* Bio rows */
.editorial-bio {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.bio-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: start;
}

.bio-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-top: 2px;
}

.bio-text {
  font-family: var(--font-body);
  font-size: 0.74rem;
  line-height: 1.6;
  color: #2e2c3a;
}

/* Secondary photo — editorial inset */
.right-secondary-photo {
  flex: 1;
  align-self: flex-end;
  width: 58%;
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  min-height: 0;
  max-height: 155px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

.right-secondary-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-folio-right {
  color: rgba(26,24,40,0.35);
}

/* ── BOOK NAVIGATION CONTROLS ───────────────────────────────────────────── */
.book-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
  padding-right: 4px;
}

.book-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: #ffffff;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.book-nav-btn:hover:not(:disabled) {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
  box-shadow: var(--shadow-gold);
  transform: scale(1.06);
}

.book-nav-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.book-page-counter {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  min-width: 48px;
  text-align: center;
}

/* ── ACTORS CAROUSEL PILL ───────────────────────────────────────────────── */
.actors-carousel-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(13, 14, 18, 0.62);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  padding: 18px 24px;
  box-shadow:
    0 8px 40px -8px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(212,175,55,0.06);
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.carousel-arrow:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(212,175,55,0.08);
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 6px 4px;
  will-change: transform;
}

/* ── ACTOR AVATAR ITEM ──────────────────────────────────────────────────── */
.actor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}

.actor-avatar-ring {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  padding: 2.5px;
  background: rgba(255,255,255,0.1);
  transition: var(--transition-smooth);
}

/* Active state — gold gradient ring + glow */
.actor-item.active .actor-avatar-ring {
  background: conic-gradient(
    from 0deg,
    var(--accent-gold) 0%,
    #f5d060        30%,
    var(--accent-gold) 60%,
    #b8952e        90%,
    var(--accent-gold) 100%
  );
  box-shadow:
    0 0 0 3px rgba(212,175,55,0.18),
    0 6px 24px rgba(212,175,55,0.28);
  transform: scale(1.1);
}

.actor-item:not(.active):hover .actor-avatar-ring {
  background: rgba(212,175,55,0.35);
  transform: scale(1.04);
}

.actor-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.8) grayscale(20%);
  transition: filter 0.35s ease;
}

.actor-item.active .actor-avatar-img {
  filter: brightness(1.0) grayscale(0%);
}

.actor-item:not(.active):hover .actor-avatar-img {
  filter: brightness(0.92) grayscale(5%);
}

/* Book badge on avatar */
.actor-book-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.48rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}

.actor-item.active .actor-book-badge {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
  font-size: 0.52rem;
}

.actor-name {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.3;
  max-width: 78px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.actor-item.active .actor-name {
  color: #ffffff;
  font-weight: 600;
}

.actor-item:not(.active):hover .actor-name {
  color: rgba(255,255,255,0.8);
}

/* RESPONSIVE MEDIA QUERIES */


@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 20px;
  }

  .mobile-toggle {
    display: block;
  }

  .about-grid, .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    padding: 32px 24px;
  }
}

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ── Atores Section: Tablet (≤ 1024px) ────────────────────────────────── */
@media (max-width: 1024px) {
  .flipbook-wrapper {
    max-width: 860px;
  }

  .page.page-left,
  .page.page-right {
    height: 520px;
  }

  .mag-main-title {
    font-size: 2.8rem;
  }

  .actors-carousel-pill {
    max-width: 94vw;
    padding: 14px 16px;
  }
}

/* ── Atores Section: Mobile (≤ 768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  .atores-section {
    padding: 70px 0 80px;
  }

  /* Stack pages vertically on mobile */
  .book-spread {
    grid-template-columns: 1fr;
    grid-template-rows: auto 6px auto;
    border-radius: 10px;
  }

  .book-fold {
    width: 100%;
    height: 6px;
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 50%,
      rgba(255,255,255,0.04) 50%, rgba(0,0,0,0.3) 100%
    );
  }

  .page.page-left {
    height: 440px;
    border-radius: 10px 10px 0 0;
  }

  .page.page-right {
    height: auto;
    min-height: 360px;
    border-radius: 0 0 10px 10px;
  }

  .page-right-inner {
    position: relative;
    inset: auto;
    padding: 20px 20px 28px;
  }

  .right-secondary-photo {
    max-height: 120px;
    width: 52%;
  }

  .editorial-quote {
    font-size: 1.1rem;
  }

  .actors-carousel-pill {
    max-width: 100%;
    border-radius: 20px;
    padding: 14px 12px;
    gap: 10px;
  }

  .actor-avatar-ring {
    width: 60px;
    height: 60px;
  }

  .actor-name {
    font-size: 0.62rem;
    max-width: 64px;
  }

  .carousel-track {
    gap: 14px;
  }
}

/* ── Atores Section: Small Mobile (≤ 480px) ───────────────────────────── */
@media (max-width: 480px) {
  .page.page-left {
    height: 380px;
  }

  .mag-main-title {
    font-size: 2rem;
  }

  .actor-cover-name {
    font-size: 1.4rem;
  }

  .cover-pill {
    font-size: 0.62rem;
  }

  .actor-avatar-ring {
    width: 54px;
    height: 54px;
  }
}
