:root {
  --primary-color: #0f172a;
  --secondary-color: #01600e;
  --accent-color: #01600e;
  --text-color: #1f2937;
  --light-text: #4b5563;
  --background-color: #f8fafc;
  --light-bg: #eef2f7;
  --border-color: #d7deea;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
  font-size: 17px;
  -webkit-tap-highlight-color: transparent;
}

.link-block,
a,
button {
  -webkit-tap-highlight-color: transparent;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-top: 4rem;
  padding: 0;
  /* border-bottom: 1px solid var(--border-color); */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Varela Round', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  scroll-margin-top: 80px;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

p {
  margin-bottom: 1.5rem;
  color: var(--light-text);
  font-size: 1.15rem;
  line-height: 1.7;
}

.title-row {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 60px;
}

.title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1360px;
  }

  .title {
    white-space: nowrap;
  }
}

.hero-subtitle {
  max-width: 860px;
  margin: 0.5rem auto 0;
  color: var(--light-text);
  font-size: 1.2rem;
}

.author-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.link-labels + .base-row.author-row {
  margin-top: 3.5rem;
}

.author-col {
  margin: 2px 10px;
  text-align: center;
}

.affiliations {
  font-size: 0.95rem;
  color: var(--light-text);
}

.author-text {
  font-size: 1.25rem;
  color: var(--primary-color);
.title-row + .author-row {
  margin-top: 2.5rem;
}

  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.link-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0;
}

.icon-col {
  margin: 0 15px;
  text-align: center;
}

.link-block {
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.main-icon {
  color: var(--primary-color);
  transition: var(--transition);
}

.link-block:hover .main-icon {
  color: var(--accent-color);
  transform: translateY(-5px);
}

.link-labels-text {
  display: block;
  color: var(--light-text);
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: var(--transition);
}

.link-block:hover .link-labels-text {
  color: var(--accent-color);
}

.no-underline {
  text-decoration: none;
}

.tldr {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 10px;
  margin: -2rem 0 2.5rem 0;
  box-shadow: var(--shadow);
  font-size: 1.2rem;
  color: var(--light-text);
  line-height: 1.6;
}

.tldr b {
  color: var(--primary-color);
}

.add-top-padding {
  padding-top: 2rem;
}

.image-container {
  margin: 1.5rem auto;
  padding: 1.5rem 2rem 1rem 2rem;
  position: relative;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background-color: white;
  border: 1px solid var(--border-color);
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 80%;
  max-width: 100%;
  display: block;
}

.table-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.image-container:hover, .table-container:hover, .video-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.image-content {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img, 
.slideshow-video {
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: var(--transition);
  display: block;
  object-fit: contain;
}

.large-image {
  max-width: 100%;
  display: block;
  margin: 1rem auto 2rem auto;
}

.image-container.full-width {
  display: block;
  width: 80%;
  max-width: 100%;
  text-align: center;
}

.image-container.full-width .img {
  width: 100%;
  height: auto;
}

.z-depth-1 {
  /* Remove shadow from images as it's now on the container */
  box-shadow: none;
}

.image-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--light-text);
  text-align: center;
  padding: 0 0.5rem;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
}

.image-caption::-webkit-scrollbar {
  width: 6px;
}

.image-caption::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: 3px;
}

.image-caption::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 3px;
}

/* Add a class for image/video credits */
.image-credit {
  font-weight: normal;
}

.citation {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
}

pre {
  background-color: #f1f5f9;
  padding: 1.5rem;
  border-radius: 5px;
  overflow-x: auto;
  font-size: 1rem;
  border-left: 4px solid var(--accent-color);
}

.credit {
  text-align: center;
  margin: 3rem 0 1rem;
  font-size: 0.8rem;
  color: var(--light-text);
  opacity: 0.8;
}

/* Base Row and Column Structure */
.base-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.base-col {
  padding: 0 15px;
  flex: 1 1 0;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.main-nav {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a:hover:after {
  width: 100%;
}

.hero-section {
  padding-top: 100px;
  padding-bottom: 30px;
  background: radial-gradient(circle at 15% 20%, rgba(1, 96, 14, 0.08), transparent 35%), radial-gradient(circle at 80% 0%, rgba(4, 163, 33, 0.12), transparent 40%), linear-gradient(to bottom, #ffffff 0%, #f5faf6 60%, #ffffff 100%);
}

.main-content {
  padding: 20px 0 60px;
}

.title-row {
  padding-top: 20px;
}

.affiliations {
  font-size: 1.1rem;
  color: var(--light-text);
  text-align: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.author-contributions {
  font-size: 0.95rem;
  color: var(--light-text);
  text-align: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
  font-style: italic;
}

.link-block {
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.link-block:hover {
  background-color: var(--light-bg);
  transform: translateY(-5px);
}

.site-footer {
  background-color: var(--light-bg);
  padding: 30px 0;
  text-align: center;
  margin-top: 60px;
}

.credit {
  margin: 0;
}

@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links li {
    margin: 0 10px 10px;
  }
  
  .site-header {
    padding: 10px 0;
  }
  
  .hero-section {
    padding-top: 120px;
  }
}

/* Update video container styles to match image containers */
.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem 0;
  padding: 1rem;
  box-shadow: var(--shadow);
  background-color: white;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-content {
  padding: 15px;
}

.slideshow-video {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.video-caption {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--light-text);
  text-align: center;
  padding: 0 1rem;
  padding-bottom: 15px;
}

/* Add these styles to position the video container and unmute overlay correctly */
.unmute-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.unmute-overlay:hover {
  opacity: 1;
}

.unmute-overlay i {
  font-size: 16px;
}

.unmute-text {
  font-weight: 500;
}

.main-video-container {
  box-shadow: var(--shadow);
  background-color: white;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 12px;
    background-color: white;
    padding: 1rem;
    margin: 0 0 4rem 0;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slideshow-container:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.25), 0 15px 15px -5px rgba(0, 0, 0, 0.15);
}

.slideshow {
    position: relative;
    height: 580px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
}

.slideshow-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.slideshow-image-video {
  width: 100%;
  height: 345px;
  object-fit: contain;
  border-radius: 8px;
}

.comparison-slideshow-image {
    max-width: 600px;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin-bottom: 15px;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 10;
}

.slideshow-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slideshow-nav.prev {
    left: 10px;
}

.slideshow-nav.next {
    right: 10px;
}

.slideshow-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.play-pause {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.8;
}

.play-pause:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
    .slideshow {
        height: 500px;
    }
    
    .slideshow-image {
        height: 300px;
    }
    
    .image-caption {
        max-height: 120px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .slideshow {
        height: 450px;
    }
    
    .slideshow-image {
        height: 250px;
    }
    
    .image-caption {
        max-height: 100px;
        font-size: 0.85rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #01600e, #03a127, #6fdb76);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Table Styles */
.table-container {
    margin: 2rem 0;
    padding: 0.75rem 0 0.5rem 0;
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-color: white;
    overflow-x: auto;
}

.advantages-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    line-height: 1.5;
}

.advantages-table th,
.advantages-table td {
    padding: 0.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    font-family: 'Varela Round', sans-serif;
    font-weight: 500;
}

.advantages-table th {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.advantages-table tr:last-child td {
    border-bottom: none;
}

.advantages-table td:first-child {
    color: var(--primary-color);
}

.advantages-table strong {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .table-container {
        margin: 0 0 2rem 0;
        padding: 0.75rem 0 0.5rem 0;
    }
    
    .advantages-table {
        font-size: 0.9rem;
    }
    
    .advantages-table th,
    .advantages-table td {
        padding: 0.4rem 0.75rem;
    }
}

/* Play Button Overlay Styles */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button-overlay i {
    font-size: 60px;
    margin-left: 8px;
}

/* Grid and layout helpers */
.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin: 0;
}

.card a {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--light-text);
}

.code-block {
  background-color: #f1f5f9;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

.results-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.results-left .media-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.results-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.results-right .media-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.results-right .media-card .image-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.results-left .media-card .image-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.media-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2rem 1rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.media-card .img {
  width: 100%;
  height: auto;
}

.media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.media-card .image-caption {
  margin-top: 0.75rem;
  max-height: none;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--light-text);
}

.feature-list li::before {
  content: '\\2022';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.wins-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.wins-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  font-size: 1.1rem;
  line-height: 1.7;
}

.wins-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.callout {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.callout h3 {
  margin-bottom: 0.5rem;
}

.inline-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
  
  .title {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .results-left,
  .results-right {
    width: 100%;
    margin: 0 auto;
  }
  
  .section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .base-col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
  
  .icon-col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 1.5rem;
  }
  
  .title {
    font-size: 1.8rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .img {
    width: 100%;
    height: auto;
  }
  
  .image-container {
    margin: 1rem auto;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    width: 95%;
  }
  
  .media-card {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    width: 95%;
    margin: 0 auto 1rem auto;
  }
  
  .media-card .img {
    width: 100%;
    height: auto;
  }
  
  .section {
    margin-top: 2rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .image-container.full-width {
    width: 95%;
    margin: 1rem auto;
  }
}

@media (max-width: 640px) {
  .base-col,
  .icon-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .icon-col {
    margin-bottom: 2rem;
  }
  
  .main-nav {
    width: 100%;
    position: relative;
    padding: 0 10px;
  }
  
  .nav-links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
  }
  
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  
  .nav-links li {
    margin: 0;
    flex: 0 0 auto;
  }
  
  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(1, 96, 14, 0.08);
    border: 1px solid rgba(1, 96, 14, 0.3);
    font-size: 0.95rem;
    scroll-snap-align: start;
  }
  
  .nav-links a:after {
    display: none;
  }
  
  .main-nav::before,
  .main-nav::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18px;
    pointer-events: none;
  }
  
  .main-nav::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  }
  
  .main-nav::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 1.6rem;
  }
  
  .image-container {
    margin: 0.75rem auto;
    padding: 1.25rem 1rem 0.75rem 1rem;
    width: 98%;
  }
  
  .media-card {
    padding: 1.25rem 1rem 0.75rem 1rem;
    width: 98%;
    margin: 0 auto 0.75rem auto;
  }
  
  .media-card .img {
    width: 100%;
    height: auto;
  }
  
  .section {
    margin-top: 1.5rem;
  }
  
  .image-container.full-width {
    width: 98%;
    margin: 0.75rem auto;
  }
}

.play-button-overlay:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Hide play button when video is playing */
.video-container video.playing + .play-button-overlay {
    display: none;
}
