.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
body {
  background-color: #131313;
  color: #e5e2e1;
  overflow-x: hidden;
}
.hero-title-gradient {
  background: linear-gradient(to bottom, #e5e2e1 0%, #c4c6cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cinematic-mask {
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.slider-wrapper { position: relative; width: 100%; overflow: hidden; border-radius: 0.75rem; }
.slider-container { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #201f1f; }
.slider-track { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.6s ease-in-out; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-nav-btn:hover { background: rgba(171,199,255,0.3); border-color: #abc7ff; }
.slider-nav-btn.prev { left: 12px; }
.slider-nav-btn.next { right: 12px; }

.mobile-menu-enter { animation: slideDown 0.3s ease-out forwards; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

html {
  animation: pageFadeIn 0.35s ease-out;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

main {
  animation: mainSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes mainSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

nav {
  animation: navFadeIn 0.3s ease-out both;
}
@keyframes navFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: #abc7ff; cursor: pointer; margin-top: -4px;
}
input[type=range]::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: #abc7ff; cursor: pointer; border: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%; height:4px; background:rgba(255,255,255,0.2); border-radius:2px;
}
input[type=range]::-moz-range-track {
  width: 100%; height:4px; background:rgba(255,255,255,0.2); border-radius:2px;
}