html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

/* ===== Signature Hero Section ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background video */
.signature-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.09;
}

.signature-hero-content {
/*    min-height: 45vh; */
    z-index: 2;
}

.signature-hero-tagline {
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade 0.8s ease forwards;
  animation-delay: 0.4s;
}

/* Overlay content 
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}*/

/* Hide everything by default */
.hero-logo img {
  display: none;
  width: 100%;
  height: auto;
}

/* ===== DESKTOP (default) ===== */

/* Light mode */
.desktop-logo.logo-light {
  display: block;
}

.hero-logo img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

/* Headline */
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* CTA */
.hero .route-btn {
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade 0.8s ease forwards;
  animation-delay: 0.4s;
}

/* Subtle fade-in animation */
@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark mode tuning */
body.dark-mode .hero-video {
  opacity: 0.7;
}

body.dark-mode .hero {
  background-color: #0d0d0d;
}

/* Dark mode for .desktop-logo.logo-light & .desktop-logo.logo-dark */
body.dark-mode .desktop-logo.logo-light {
  display: none;
}

body.dark-mode .desktop-logo.logo-dark {
  display: block;
}

.logo-img {
  content: url(/images/logo/logo-dc-light.svg);
  max-width: 600px;
  width: 100%;
  height: auto;
}

main {
  flex: 1; /* This pushes the footer down */
}

.section1 {
    height: 150vh;
    background-image: url('/images/project-banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* .mt-5 {
   margin-top: 12.5rem !important; 
}*/

.card-img-top {
    height: 250px;
    object-fit: cover;
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

/* ===== Card Border Radius Override (Bootstrap Variable) ===== */
.card {
  --bs-border-radius: 0rem !important; /* custom radius applied safely without editing Bootstrap */
}

/* Ensure poster shows immediately by locking video height */
.card video.card-img-top {
    width: 100%;
    height: auto;        /* match your .card-img-top height */
    object-fit: contain;  /* or use 'cover' if you don’t want letterboxing */
    background: #000;
    display: block;
}

.card:hover .card-img-top {
    transform: scale(.99);
}

/* Optional: add soft glow */
.bg-dark {
    background-color: #0d0d0d !important;
}

/* Animation */
@keyframes scroll {
	0% { transform: translateX(650px); }
	100% { transform: translateX(-100%); } /* Scroll halfway since content is duplicated */
}

/* Styling */
.slider {
	/* background: white; */
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
	height: 350px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 600px;
}

.slider::before,
.slider::after {
	content: "";
	height: 350px;
	position: absolute;
	width: 600px;
	z-index: 2;
}

.slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.slider::before {
	left: 0;
	top: 0;
}

.slide-track {
    display: flex;
	animation: scroll 25s linear infinite;
	width: max-content; /* dynamically expand to fit content */
}

.slide-track:hover {
	animation-play-state: paused;
}

.slide {
    flex: 0 0 auto; /* Prevent flex-grow/shrink */
	height: 350px;
	transform: translateZ(0);
}

.slide-inner {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.slide:hover .slide-inner {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider:hover .slide-track {
    animation-play-state: paused;
}


/* Dark Mode Styling */

body.dark-mode {
    background-color: #0d0d0d;
    color: #f0f0f0;
}

body.dark-mode .bg-light {
    background-color: #1a1a1a !important;    
}

body.dark-mode .navbar,
body.dark-mode .footer {
    background-color: #1a1a1a !important;
}

body.dark-mode .fw-bold {
    color: #f0f0f0;
}

body.dark-mode .nav-link.active {
    color: #fff;
}

body.dark-mode .nav-link {
    color: #f0f0f0;
}

body.dark-mode .logo-img {
  content: url('/images/logo/logo-dc-dark.svg');
}

/* Custom Tab Styling */

/* ===== Custom Tab Button Colors ===== */
.nav-tabs .nav-link,
.nav-pills .nav-link {
  color: #212529; /* match your main text color */
}

.nav-tabs .nav-link.active,
.nav-pills .nav-link.active {
  color: #212529;
  background-color: transparent;
  border-color: #212529;
}

/* Hover and focus states */
.nav-tabs .nav-link:hover,
.nav-pills .nav-link:hover,
.nav-tabs .nav-link:focus,
.nav-pills .nav-link:focus {
  color: #212529;
}

/* Dark mode */
body.dark-mode .nav-tabs .nav-link,
body.dark-mode .nav-pills .nav-link {
  color: #f0f0f0;
}

body.dark-mode .nav-tabs .nav-link.active,
body.dark-mode .nav-pills .nav-link.active {
  color: #f0f0f0;
  border-color: #f0f0f0;
}

/* ===== Custom Tab Buttons (Override Bootstrap) ===== */
/* Override Bootstrap's .btn styles for tab buttons */

.tab-btn.btn {
  color: #212529 !important;
  border: 2px solid #212529 !important;
  background: transparent !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.tab-btn.btn:hover,
.tab-btn.btn:focus {
  color: #ffffff;
  background-color: #212529;
  border-color: #212529;
}

/* Active tab */
/* Active tab */
.tab-btn.btn.active {
  color: #ffffff !important;
  background-color: #212529 !important;
  border-color: #212529 !important;
}

/* Ensure active state remains filled even on hover */
.tab-btn.btn.active:hover,
.tab-btn.btn.active:focus {
  color: #ffffff !important;
  background-color: #212529 !important;
  border-color: #212529 !important;
}

/* ===== Sliding underline for tabs ===== */

.tab-btn.btn {
  position: relative;
}

.tab-btn.btn::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* Hover underline */
.tab-btn.btn:hover::before {
  width: 60%;
}

/* Active tab underline */
.tab-btn.btn.active::before {
  width: 80%;
}

/* Dark mode consistency */
body.dark-mode .tab-btn.btn::before {
  background: currentColor;
}

/* Dark mode support */
body.dark-mode .tab-btn.btn {
  color: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
}

body.dark-mode .tab-btn.btn:hover,
body.dark-mode .tab-btn.btn:focus {
  background-color: #f0f0f0;
  color: #0d0d0d;
  border-color: #f0f0f0;
}

body.dark-mode .tab-btn.btn.active {
  background-color: #f0f0f0 !important;
  color: #0d0d0d !important;
  border-color: #f0f0f0 !important;
}

/* ===== Tab Micro‑interaction ===== */

/* Press effect */
.tab-btn.btn:active {
  transform: scale(0.96);
}

/* Smooth movement */
.tab-btn.btn {
  transform: translateY(0);
}

/* Ripple burst effect */
.tab-btn.btn {
  position: relative;
  overflow: hidden;
}

.tab-btn.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transform: scale(0);
  border-radius: inherit;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: -1;
}

/* Trigger ripple on click */
.tab-btn.btn:active::after {
  opacity: 0.15;
  transform: scale(1.6);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;    
}

.tab-panel.active {
    display: block;
}

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

/* Lightbox overlay */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: none; align-items: center; justify-content: center; z-index: 1050; }
.lightbox-overlay.open { display: flex; }
.lightbox-content { position: relative; max-width: min(90vw, 1200px); max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 90vh; display: block; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.lightbox-caption { color: #fff; text-align: center; margin-top: .5rem; font-size: .95rem; opacity: .9; }

/* Controls */
.lightbox-close { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,.6); color:#fff; border:0; width:40px; height:40px; border-radius:999px; cursor:pointer; font-size:22px; display:grid; place-items:center; }
.lightbox-nav { position: absolute; inset: 0; display:flex; align-items:center; justify-content:space-between; pointer-events:none; }
.lightbox-btn { pointer-events:auto; background: rgba(0,0,0,.4); color:#fff; border:0; width:48px; height:48px; border-radius:999px; cursor:pointer; font-size:22px; display:grid; place-items:center; margin: 0 8px; }
.lightbox-btn:hover, .lightbox-close:hover { background: rgba(0,0,0,.6); }

/* Ensure controls sit above the image */
.lightbox-img {
  position: relative;
  z-index: 1;
}

.lightbox-nav {
  z-index: 2; /* above image */
}

.lightbox-close {
  z-index: 3; /* above everything */
}

/* Gradient background behind buttons for visibility */
.lightbox-btn {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
}

.lightbox-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, transparent 70%);
  z-index: -1;
}

.lightbox-close {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
}

/* Fade in/out controls on hover */
.lightbox-overlay .lightbox-btn,
.lightbox-overlay .lightbox-close {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay:hover .lightbox-btn,
.lightbox-overlay:hover .lightbox-close {
  opacity: 1;
}

/* Fade-in animation for lightbox image */
@keyframes lightboxFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-overlay.open .lightbox-img {
  animation: lightboxFade 0.3s ease forwards;
}

.lightbox-overlay.open .lightbox-caption {
  animation: lightboxFade 0.3s ease forwards;
  animation-delay: 0.15s;
}


/* ===== Theme Toggle (Navbar Icon Button) ===== */

.theme-toggle {
  background: none;
  border: 1px solid #222222;
  border-radius: 999px; /* circular button */
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* color: inherit; allows SVG to use currentColor */
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}


.theme-toggle:hover {
  opacity: 0.75;
}

.theme-toggle:hover {
  opacity: 0.85;
}

body.dark-mode .theme-toggle {
  border-color: rgba(255, 255, 255, 0.6);
}

.theme-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

/* Theme toggle micro-interaction */
.theme-toggle svg {
  transition: transform 0.35s ease;
  transform-origin: center;
}

body.dark-mode .theme-toggle svg {
  transform: rotate(0deg);
}

/* Dark icon (sun) — black */
.theme-toggle .icon-dark {
  color: #222222;
}

/* Force SVG paths to inherit color */
.theme-toggle svg path {
  fill: currentColor !important;
}

/* Light icon (moon) — white */
.theme-toggle .icon-light {
  color: #ffffff;
}

/* Theme toggle icon visibility */
.theme-toggle .icon-light {
  display: none;
}

body.dark-mode .theme-toggle .icon-dark {
  display: none;
}

body.dark-mode .theme-toggle .icon-light {
  display: block;
}


/* Navbar placement refinement for single theme toggle */
.navbar .theme-toggle {
  margin-left: 0.75rem;
}

/* ===== Breadcrumb Navigation (Motion‑Aware) ===== */

.breadcrumb-wrapper {
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  z-index: 5;
  padding: 0.75rem 0;
}

.breadcrumb {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  align-items: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

/* Base link */
.breadcrumb a {
  color: #212529;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* Motion hover: subtle lift */
.breadcrumb a:hover {
  color: #000;
  transform: translateY(-2px);
}

/* Motion underline reveal */
.breadcrumb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.28s ease;
}

.breadcrumb a:hover::after {
  width: 100%;
}

/* Reduced contrast for previous crumbs */
.breadcrumb-item:not(.active) a {
  opacity: 0.85;
}

.breadcrumb-item:not(.active) a:hover {
  opacity: 1;
}

/* Active state */
.breadcrumb-item.active {
  color: #6c757d;
  font-weight: 600;
}

/* Subtle focus for accessibility */
.breadcrumb a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Dark mode */
body.dark-mode .breadcrumb-wrapper {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

body.dark-mode .breadcrumb a {
  color: #f0f0f0;
}

body.dark-mode .breadcrumb a:hover {
  color: #ffffff;
}

body.dark-mode .breadcrumb-item.active {
  color: #bfc3c7;
}

/* Dark mode reduced contrast */
body.dark-mode .breadcrumb-item:not(.active) a {
  opacity: 0.85;
}

body.dark-mode .breadcrumb-item:not(.active) a:hover {
  opacity: 1;
}

/* ===== Standard Hub Page Header ===== */
.page-header {
  padding: 4rem 0 3rem;
  background-color: transparent;
}

.page-header__content {
  max-width: 720px;
}

.page-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--bs-secondary-color, #6c757d);
}

/* Dark mode support */
body.dark-mode .page-subtitle {
  color: #bfc3c7;
}

/* ===== Disclaimer Text (Dark Mode Fix) ===== */
body.dark-mode .text-muted {
  color: #c9ced3 !important; /* brighter muted text for readability */
}

/* Optional: slightly softer tone specifically for disclaimer blocks */
body.dark-mode .container .small.text-muted {
  color: #bfc3c7 !important;
}

/* ===== Disclaimer Block Component ===== */
.disclaimer-block {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding-left: 1rem;
  border-left: 3px solid #212529;
  margin-top: 2.5rem !important;
}

.disclaimer-block p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6c757d;
}

/* Dark mode */
body.dark-mode .disclaimer-block {
  border-left: 3px solid #f0f0f0;
}

body.dark-mode .disclaimer-block p {
  color: #bfc3c7;
}

/* Dark mode fix for PBC Day 2026 case study muted text */
body.dark-mode .case-intro .text-muted {
  color: #c9ced3 !important;
}

body.dark-mode .col-md-6 .motion-caption {
  color: #c9ced3;
}

body.dark-mode .card .card-body {
  background-color: #1a1a1a;
}

body.dark-mode .card .card-body .card-title,
body.dark-mode .card .card-body .card-text {
  color: #f0f0f0;
}
/* Dark mode navbar toggler (hamburger) */
body.dark-mode .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23F0F0F0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== Homepage Routing Buttons (Refined CodePen-style) ===== */

.route-btn {
  position: relative;
  padding: 1rem 4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #222222;
  background: #f8f9fa;
  border: 2px solid #222222;
  border-radius: 0%;
  overflow: hidden;
  transition: color 0.2s ease;
}

/* ===== Homepage Routing Buttons (Burst Fill) ===== */
.route-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  border-radius: inherit;
  z-index: -1;
}

.route-btn:hover::before {
  transform: scale(1);
  color: #222222;
}

.route-btn:hover {
  transform: translateY(-1px);
  transition: transform 0.25s ease;
  background-color: transparent;
  color: #f8f9fa;
}

/* Dark mode */
body.dark-mode .route-btn {
  color: #f0f0f0;
  border-color: #f0f0f0;
  background: transparent;
}

/* This controls the fill animation */
body.dark-mode .route-btn::before {
  background-color: #f0f0f0;
}

/* Hover = inverted */
body.dark-mode .route-btn:hover {
  color: #0d0d0d;
}

/* ===== Project Status Badge ===== */

.project-card {
  position: relative;
}

.project-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.35rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #ffc107;
  color: #2c2c2c;
  z-index: 5;
}

/* In-Progress badge micro-interaction */
@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 #f1f1f1;
  }
  70% {
    box-shadow: 0 0 0 4px #ffffffcc;
  }
  100% {
    box-shadow: 0 0 0 0 #f1f1f1;
  }
}

.badge-progress {
  animation: badgePulse 2.5s ease-out infinite;
}

body.dark-mode .badge-progress {
  animation: badgePulse 2.5s ease-out infinite;
}

/* Dark mode support */
body.dark-mode .project-badge {
  background: #2a2a2a;
  color: #f4f5f7;}

body.dark-mode .badge-soon {
  background: rgb(221 221 221 / 75%);
  color: #1a1a1a;
  border-color: rgb(41 41 41);
}

/* Badge for Coming Soon */

.badge-soon {
  background: rgba(73, 80, 87, 0.75);
  color: #f4f5f7;
  border: 1px solid #ebebeb;
}


/* ===== In-Progress Project Overlay ===== */

.project-media {
  position: relative;
}

.project-card:has(.project-badge) .project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.project-card .card-img-top {
  position: relative;
  z-index: 1;
}

/* == Projects Grid Icon == */

.projects-icon {
  display: inline-flex;
  margin-right: 0.5rem;
  align-items: center;
  width: 50%;
  height: 50%;
}

.icon-grid {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  animation: gridIntro 0.45s ease-out forwards;
}

.icon-grid rect {
  stroke-width: 1.8;
  fill: transparent;
  transition:
    fill 0.25s ease 0.12s,
    transform 0.25s ease 0.12s;
  transform-origin: center;
}

@keyframes gridIntro {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.icon-grid {
    animation: gridIntro 0.5s ease-out forwards;
}

.route-btn:hover .icon-grid rect {
  fill: currentColor;
  transform: scale(1.05);
}

.route-btn:hover .icon-grid {
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}

.project-meta {
  color: #212529; 
}

body.dark-mode .project-meta {
  color: #cfcfcf; /* or whatever fits your palette */
}

/* ===== Project CTA Buttons (Global) ===== */

.card .btn {
  color: #212529;
  border: 2px solid #212529;
  background: transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.card .btn:hover,
.card .btn:focus {
  color: #ffffff;
  background-color: #212529;
  border-color: #212529;
  transform: translateY(-1px);
}

/* Dark mode */
body.dark-mode .card .btn {
  color: #f0f0f0;
  border-color: #f0f0f0;
}

body.dark-mode .card .btn:hover,
body.dark-mode .card .btn:focus {
  background-color: #f0f0f0;
  color: #0d0d0d;
  border-color: #f0f0f0;
}

/* ============================================================
   Footer Wave Background (Imported from experiments)
   Purpose: Decorative animated SVG wave for site footer
   Notes:
   - Scoped to .footer-waves so it does NOT affect global layout
   - Keeps experimental styles isolated and maintainable
   ============================================================ */

.footer-waves {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  min-height: 175px;
}

/* Wave container */
.footer-waves .wave {
  position: absolute;
  bottom: -5%;
  left: 0;
  right: 0;
}

/* Individual wave settings */
.footer-waves .wave:nth-of-type(1) {
  --speed: 30;
  --opacity: 0.3;
  --height: 12;
  --width: 400;
}

.footer-waves .wave:nth-of-type(2) {
  --speed: 45;
  --opacity: 0.6;
  --height: 10;
  --width: 300;
}

.footer-waves .wave:nth-of-type(3) {
  --speed: 15;
  --opacity: 1;
  --height: 6;
  --width: 200;
}

/* Wave animation */
.footer-waves .wave {
  background-image: url("https://assets.codepen.io/605876/wave--infinite.svg");
  height: calc(var(--height, 0) * 1vh);
  width: calc(var(--width, 0) * 1vw);
  opacity: var(--opacity);
  animation: footerWave calc(var(--speed, 0) * 1s) infinite linear;
  background-repeat: repeat-x;
}

/* Unique keyframes to avoid collisions with other animations */
@keyframes footerWave {
  to {
    transform: translate(-50%, 0);
  }
}

.card {
  position: relative;
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  background: rgba(0,0,0,0.25);
  cursor: pointer;

  transition: background 0.3s ease;
  z-index: 2;
}

/* Hover effect */
.video-play-btn:hover {
  background: rgba(0,0,0,0.4);
}

/* Play icon */
.video-play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Triangle icon */
.video-play-icon::before {
  content: "";
  display: block;
  margin-left: 3px;

  width: 0;
  height: 0;
  border-left: 14px solid black;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}