/* ==========================================================================
   Codecor Rota el Porteño - Design System Foundation
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@600;700&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
  /* Colors */
  --color-primary: #000000;
  --color-on-primary: #ffffff;
  --color-primary-container: #131b2e;
  --color-on-primary-container: #7c839b;
  --color-primary-fixed-dim: #bec6e0;
  
  --color-secondary: #d4af37;
  --color-on-secondary: #ffffff;
  --color-secondary-container: #b8962e;
  --color-on-secondary-container: #ffffff;
  
  --color-tertiary: #000000;
  --color-on-tertiary: #ffffff;
  --color-tertiary-container: #0b1c30;
  --color-on-tertiary-container: #75859d;

  --color-surface: #f7f9fb;
  --color-on-surface: #191c1e;
  --color-surface-variant: #e0e3e5;
  --color-on-surface-variant: #45464d;
  
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-low: #f2f4f6;
  --color-surface-container: #eceef0;
  
  --color-inverse-surface: #2d3133;
  --color-inverse-primary: #bec6e0;
  
  --color-outline: #76777d;
  --color-outline-variant: #c6c6cd;
  
  --color-error: #ba1a1a;
  --color-on-error: #ffffff;

  /* Typography */
  --font-family-headline: 'Hanken Grotesk', sans-serif;
  --font-family-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.4rem;
  --spacing-sm: 0.8rem;
  --spacing-base: 1rem;
  --spacing-md: 1.6rem;
  --spacing-lg: 2.4rem;
  --spacing-xl: 4.8rem;
  --spacing-gutter: 2.4rem;
  --margin-mobile: 2rem;
  --margin-desktop: 8rem;

  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius-default: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;
  
  /* Layout */
  --max-width: 1280px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
  font-size: 10px; /* 1rem = 10px */
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family-body);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-on-surface);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-headline);
  color: var(--color-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */

.headline-xl {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.headline-md {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.body-lg {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}

.body-md {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

.label-md {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label-sm {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Typography Responsive adjustments */
@media (max-width: 767px) {
  .headline-xl {
    font-size: 3.2rem; /* Even smaller for mobile to prevent long word overflow */
  }
  .headline-lg {
    font-size: 2.6rem;
  }
  .headline-md {
    font-size: 2.2rem;
  }
  .body-lg {
    font-size: 1.6rem;
  }
  .justify-end {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--margin-mobile);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--margin-desktop);
  }
}

.section {
  padding: var(--spacing-xl) 0;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }

.grid { display: grid; }
.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }
.gap-gutter { gap: var(--spacing-gutter); }

@media (min-width: 768px) {
  .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .col-span-4 { grid-column: span 4; }
  .col-span-8 { grid-column: span 8; }
  .col-span-12 { grid-column: span 12; }
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-default);
  transition: all 0.3s ease;
  font-family: var(--font-family-body);
}

.btn-sm {
  padding: var(--spacing-sm) var(--spacing-lg);
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-on-secondary);
  border: 1px solid var(--color-secondary);
}

.btn-primary:hover {
  background-color: var(--color-secondary-container);
  color: var(--color-on-secondary-container);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-on-primary);
  border: 1px solid var(--color-on-primary);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

.btn-secondary.dark {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary.dark:hover {
  background-color: rgba(0,0,0,0.05);
}

/* Cards */
.card {
  background-color: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0, 81, 213, 0.1);
}

.card-icon {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  font-variation-settings: 'FILL' 1;
}

.card-link {
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xl);
}
.card-link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .card {
    text-align: center;
    align-items: center;
  }
}

/* Forms */
.form-group {
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-family-body);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-on-surface);
}

.form-input {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-default);
  font-size: 1.6rem;
  font-family: var(--font-family-body);
  background-color: var(--color-surface-container-lowest);
  color: var(--color-on-surface);
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-secondary);
  border-width: 2px;
  padding: calc(var(--spacing-sm) - 1px) calc(var(--spacing-md) - 1px);
}

/* Badges / Labels */
.badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--color-secondary);
  color: var(--color-on-secondary);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: #000000;
  border-bottom: 1px solid #222;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--margin-mobile);
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header-container {
    padding: var(--spacing-md) var(--margin-desktop);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  text-decoration: none;
}

.logo-image {
  height: 64px;
  width: auto;
  border-radius: var(--radius-sm);
}

.logo-text-container {
  display: none;
}

.logo-text-main {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-tertiary-container);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-text-sub {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  line-height: 1;
  margin-top: 4px;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
  }
}

.nav-link {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-secondary);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-surface-container-lowest);
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  z-index: 100;
  padding: var(--spacing-xs) 0;
  border: 1px solid var(--color-outline-variant);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  color: var(--color-on-surface);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: var(--color-surface-container-low);
  color: var(--color-secondary);
}

.menu-toggle {
  display: block;
  font-size: 2.4rem;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* ==========================================================================
   Specific Sections
   ========================================================================== */

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* offset for fixed header */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.text-white { color: #ffffff !important; }
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-on-surface-variant { color: var(--color-on-surface-variant) !important; }
.text-center { text-align: center; }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-xl { margin-top: var(--spacing-xl); }

.bg-surface { background-color: var(--color-surface); }
.bg-surface-lowest { background-color: var(--color-surface-container-lowest); }
.bg-primary-container { background-color: var(--color-primary-container); }

.about-image {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-outline-variant);
  width: 100%;
}

@media (max-width: 767px) {
  .about-image {
    height: 300px;
  }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-item {
  border-left: 2px solid var(--color-secondary);
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

/* CTA Box */
.cta-box {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

/* Footer */
.footer {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  padding: var(--spacing-xl) 0;
}

.footer-nav a {
  opacity: 0.8;
}
.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.border-t-footer {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
}

/* ==========================================================================
   Admin Panel Styles
   ========================================================================== */

body.admin-body {
    background-color: var(--color-surface-container-low);
    display: flex;
    min-height: 100vh;
    margin: 0;
}

@media (max-width: 767px) {
    body.admin-body {
        flex-direction: column;
    }
    #dashboard-view {
        flex-direction: column;
    }
}

/* --- Login Vista --- */
#login-view {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
}
.login-card {
    max-width: 400px;
    width: 100%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: bold;
}

/* --- Dashboard Vista --- */
#dashboard-view {
    display: none;
    width: 100%;
}

.sidebar {
    width: 250px;
    background-color: var(--color-primary-container);
    color: var(--color-on-primary-container);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg) 0;
}

@media (max-width: 767px) {
    .sidebar {
        width: 100%;
        height: auto;
        padding: var(--spacing-md) 0;
    }
}
.sidebar-logo {
    padding: 0 var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    color: var(--color-on-primary);
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.nav-item {
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--color-on-primary-container);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    border-left: 4px solid transparent;
}
.nav-item:hover, .nav-item.active {
    background-color: rgba(255,255,255,0.05);
    color: var(--color-on-primary);
    border-left-color: var(--color-secondary);
}
.logout-btn {
    margin-top: auto;
    color: var(--color-error);
}

.main-content {
    flex-grow: 1;
    padding: var(--spacing-xl);
    overflow-y: auto;
}

.panel {
    display: none;
}
.panel.active {
    display: block;
}

/* Tablas */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface-container-lowest);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-outline-variant);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.admin-table th, .admin-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--color-outline-variant);
    font-size: 1.4rem;
}
.admin-table th {
    background-color: var(--color-surface-container);
    font-weight: 600;
    color: var(--color-on-surface);
}
.admin-table tr:last-child td {
    border-bottom: none;
}

/* Modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.modal.active {
    display: flex;
}
.modal-content {
    background-color: var(--color-surface-container-lowest);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

.display-block { display: block; }
.display-none { display: none; }
.w-full { width: 100%; }
.text-opacity-80 { opacity: 0.8; }
.text-opacity-90 { opacity: 0.9; }
.max-w-600 { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-lg { padding: 2rem; }
.pt-80 { padding-top: 80px; }
.min-h-screen-nav { min-height: calc(100vh - 80px); }
.uppercase { text-transform: uppercase; }
.cursor-pointer { cursor: pointer; }
.text-link { color: var(--color-primary); }

/* Mobile Menu Classes */
.nav-desktop.menu-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(247, 249, 251, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl) var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease forwards;
    border-bottom: 1px solid var(--color-surface-variant);
    gap: var(--spacing-md);
}

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

/* WhatsApp Floating Button */
.about-hero-img {
  border-radius: 12px;
  box-shadow: var(--elevation-2);
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

@media (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}

/* ==========================================================================
   Video Corporate Mockup
   ========================================================================== */
.video-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-lg) 0;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 380px;
  background-color: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
              inset 0 0 0 4px #2a2a2a, 
              inset 0 0 0 6px #111;
  aspect-ratio: 9/16;
  margin: 0 auto;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background-color: #111;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.phone-mockup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  background-color: #000;
}

/* ==========================================================================
   Gallery Slider (Modal)
   ========================================================================== */
#modal-galeria-grid {
  display: none; /* Hide old grid */
}

.gallery-slider-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  height: 100%;
}

.gallery-main-view {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 300px;
}

.gallery-main-view img,
.gallery-main-view video {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10;
}

.gallery-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.gallery-nav-btn.prev {
  left: var(--spacing-sm);
}

.gallery-nav-btn.next {
  right: var(--spacing-sm);
}

.gallery-thumbnails {
  display: flex;
  gap: var(--spacing-sm);
  overflow-x: auto;
  padding-bottom: var(--spacing-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--color-surface-variant) transparent;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}
.gallery-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}
.gallery-thumbnails::-webkit-scrollbar-thumb {
  background-color: var(--color-surface-variant);
  border-radius: 10px;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.2s;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid transparent;
}

.gallery-thumb:hover {
  opacity: 0.8;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.video-thumb-indicator {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.2s;
  flex-shrink: 0;
  background-color: #222;
  border: 2px solid transparent;
}

.video-thumb-indicator .material-symbols-outlined {
  color: white;
  font-size: 24px;
}

.video-thumb-indicator.active {
  opacity: 1;
  border-color: var(--color-primary);
  transform: scale(1.05);
}
