:root {
  color-scheme: light dark;
  --primary: #0146f4;
  --primary-glow: #3c7bff;
  --neon: #6dfcff;
  --bg: #dadada;
  --bg-alt: #f2f5ff;
  --text: #151515;
  --muted: #4b4b4b;
  --card: rgba(255, 255, 255, 0.7);
  --card-border: rgba(1, 70, 244, 0.2);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] {
  --bg: #252525;
  --bg-alt: #1e1e1e;
  --text: #f2f2f2;
  --muted: #b3b3b3;
  --card: rgba(20, 20, 20, 0.78);
  --card-border: rgba(109, 252, 255, 0.2);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(1, 70, 244, 0.1), transparent 40%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.background-pattern {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(1, 70, 244, 0.12) 1px, transparent 1px),
    linear-gradient(60deg, rgba(109, 252, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(1, 70, 244, 0.12), transparent 60%);
  background-size: 120px 120px, 160px 160px, 100% 100%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(1, 70, 244, 0.1);
}

/* header container neka zauzme celu širinu ekrana */
.site-header .container {
  width: 100%;
  max-width: 100%;
  padding-inline: 1rem; /* da logo i dugmići ne lepe za ivicu */
}


[data-theme="dark"] .site-header {
  background: rgba(20, 20, 20, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

/* novi wrapper za dugmiće desno */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.theme-toggle {
  border: 1px solid var(--card-border);
  background: var(--card);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: var(--text);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgba(109, 252, 255, 0.2);
  color: var(--text-color, #fff);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}


.lang-toggle:hover {
  border-color: var(--primary, #3a79ff);
  color: var(--primary, #3a79ff);
}

.lang-toggle:active {
  transform: scale(0.96);
}

.lang-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.voice-toggle {
  border: 1px solid var(--card-border);
  background: var(--card);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color: var(--text);
}

.voice-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.voice-toggle.active {
  border-color: var(--neon);
  box-shadow: 0 0 0 2px rgba(109, 252, 255, 0.4);
}

.hero {
  position: relative;
  padding: 5rem 0 6rem;
  /* overflow: hidden; */
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-actions {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(1, 70, 244, 0.35);
}

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

.btn:hover {
  transform: translateY(-3px);
}

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

.hero-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.hero-meta p {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  /* min-height: 320px; */
  min-height: 500px;
}

.triangle {
  position: absolute;
  z-index: 1;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0;
  /* right: -30px; */
  filter: drop-shadow(0 20px 40px rgba(1, 70, 244, 0.4));
}

.glass-card {
  position: relative;
  z-index: 3;
  margin-left: 30px;
  margin-top: 80px;
  padding: 2rem;
  max-width: 320px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-line {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(109, 252, 255, 0.3);
  border-radius: 18px;
}

.glass-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.orbit {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid rgba(109, 252, 255, 0.3);
  top: -40px;
  right: -40px;
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 700px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.about-grid,
.feature-grid,
.why-grid {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-card,
.feature-card,
.step-card,
.why-card,
.partner-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover,
.step-card:hover,
.why-card:hover,
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 70, 244, 0.4);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 70, 244, 0.4);
}


.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 70, 244, 0.1);
  margin-bottom: 1rem;
}

.feature-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:hover .icon {
  box-shadow: 0 0 18px rgba(1,70,244,0.35);
}


.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step-number {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
}

/* .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
} */

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.partner-card {
  text-align: center;
  font-weight: 600;
}

.footer {
  background: var(--bg-alt);
  padding: 4rem 0;
  border-top: 1px solid rgba(1, 70, 244, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
}

.footer-info p {
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.socials a {
  color: var(--primary);
  text-decoration: none;
}

.footer-mark {
  font-size: 0.85rem;
  color: var(--muted);
}

.divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(120deg, transparent 50%, rgba(1, 70, 244, 0.08) 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.triangle-divider::after {
  content: "";
  position: absolute;
  right: 10%;
  top: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.5;
}

.reveal {
  opacity: 0;
  /* transform: translateY(30px); */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  /* transform: translateY(0); */
}

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

  .hero {
    padding-top: 4rem;
  }

  /* nav-controls da se drži desno */
  .nav-controls {
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .theme-toggle__text {
    display: none;
  }

  .glass-card {
    margin-top: 60px;
  }
}

/* =========================
   TEAM SECTION
   ========================= */

#team .sectionHead,
#team .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

#team .sectionHead,
#team .section-heading {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

#team .sectionHead h2,
#team .section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
}

#team .sectionHead p,
#team .section-heading p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

.teamGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.person {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* suptilan “neon” highlight */
.person::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 20%, rgba(109, 252, 255, 0.25), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(1, 70, 244, 0.22), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.person:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 70, 244, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

.personTop {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(1, 70, 244, 0.25);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  object-fit: cover;
  flex: 0 0 auto;
}

.personName {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.personRole {
  color: var(--muted);
  font-size: 0.95rem;
}

.personBody {
  color: var(--text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  padding-right: 0.25rem;
}

.personFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(1, 70, 244, 0.12);
  position: relative;
  z-index: 1;
}

.miniLink {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.miniLink::after {
  content: "↗";
  font-size: 0.95rem;
  opacity: 0.9;
}

.miniLink:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .person {
    padding: 1.3rem;
  }

  .avatar {
    width: 64px;
    height: 64px;
  }

  .personFooter {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   HERO PRODUCT (GLASSES)
   ========================= */

.hero-product {
  margin: 2.5rem 0 2rem;
  position: relative;
  max-width: 520px;
}

.hero-product-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
  transform: translateZ(0);
}

/* suptilan glow u skladu sa brendom */
.hero-product::after {
  content: "";
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(
    circle,
    rgba(1, 70, 244, 0.35),
    transparent 70%
  );
  z-index: -1;
  filter: blur(40px);
}

/* mobile tweak */
@media (max-width: 600px) {
  .hero-product {
    margin: 2rem 0 1.5rem;
    max-width: 100%;
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.hero-product-image {
  animation: float 6s ease-in-out infinite;
}

/* =========================
   SOKOLUS BRAND TITLE
   ========================= */

.sokolus-title {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  line-height: 1;

  /* gradient text */
  background: linear-gradient(
    120deg,
    var(--primary),
    var(--neon)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* subtle glow */
  filter:
    drop-shadow(0 0 18px rgba(1, 70, 244, 0.45))
    drop-shadow(0 0 32px rgba(109, 252, 255, 0.35));
}

/* dark theme boost */
[data-theme="dark"] .sokolus-title {
  filter:
    drop-shadow(0 0 22px rgba(1, 70, 244, 0.65))
    drop-shadow(0 0 44px rgba(109, 252, 255, 0.5));
}

@keyframes glowPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 18px rgba(1, 70, 244, 0.4))
      drop-shadow(0 0 32px rgba(109, 252, 255, 0.25));
  }
  50% {
    filter:
      drop-shadow(0 0 26px rgba(1, 70, 244, 0.7))
      drop-shadow(0 0 50px rgba(109, 252, 255, 0.45));
  }
}

.sokolus-title {
  animation: glowPulse 6s ease-in-out infinite;
}

/* =========================
   HERO TOP GLASSES (FRONT VIEW)
   ========================= */

.hero-glasses-top {
  position: absolute;
  top: 120px;          /* visina u odnosu na hero */
  right: 6%;
  z-index: 3;
  width: min(420px, 40vw);
  pointer-events: none;
}

.hero-glasses-image {
  width: 100%;
  height: auto;
  display: block;

  /* premium shadow + glow */
  filter:
    drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 40px rgba(1, 70, 244, 0.25));
}

/* desktop fine-tuning */
@media (min-width: 1200px) {
  .hero-glasses-top {
    top: 110px;
    right: 10%;
  }
}

/* mobile: sakrij ili pomeri ispod */
@media (max-width: 900px) {
  .hero-glasses-top {
    position: relative;
    top: auto;
    right: auto;
    margin: 2rem auto 0;
    width: 80%;
  }
}

/* =========================
   RESPONSIVE NAV (HAMBURGER)
   ========================= */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile dropdown */
.nav-mobile {
  display: none;
  position: absolute;
  left: 5%;
  right: 5%;
  top: calc(100% + 10px);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: 0.8rem;
  z-index: 20;
}

.nav-mobile a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: background 0.2s ease;
}

.nav-mobile a:hover {
  background: rgba(1, 70, 244, 0.08);
}

/* When open */
.site-header.nav-open .nav-mobile {
  display: block;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

  .nav {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .orbit {
    right: 40px;
  }

  .triangle {
    width: 300px;
    height: 300px;
  }

  /* ceo blok (theme + lang + burger) stoji desno */
  .nav-controls {
    margin-left: auto;
  }
}

@media (max-width: 420px) {
  .logo span {
    display: none;
  }
}
/* ==========================================
   VIDEO PLAYER SECTION
   ========================================== */

   #video-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }
  
  .video-player-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
  }
  
  /* Main Video Player */
  .video-main {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: visible;
    margin-bottom: 1.5rem;
    border-radius: 40px;
  }
  
  .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    z-index: 1;
  }
  
  /* Glasses frame overlay */
  .glasses-frame {
    position: absolute;
    inset: -4px;
    z-index: 10;
    pointer-events: none;
  }
  
  /* Main glasses border */
  .glasses-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(0, 212, 255, 0.8);
    border-radius: 40px;
    box-shadow: 
      0 0 20px rgba(0, 212, 255, 0.6),
      0 0 40px rgba(0, 212, 255, 0.3),
      inset 0 0 20px rgba(0, 212, 255, 0.1);
  }
  
  /* Bridge in the middle */
  .glasses-frame::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 12px;
    background: rgba(0, 212, 255, 0.8);
    border-radius: 6px;
    box-shadow: 
      0 0 15px rgba(0, 212, 255, 0.8),
      0 0 30px rgba(0, 212, 255, 0.4);
  }
  
  /* Temple arms (glasses arms) */
  .temple {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
      rgba(0, 212, 255, 0.8), 
      rgba(0, 212, 255, 0.4),
      transparent
    );
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  }
  
  .temple::before {
    content: '';
    position: absolute;
    top: -3px;
    width: 100%;
    height: 9px;
    background: linear-gradient(90deg, 
      rgba(0, 212, 255, 0.3), 
      rgba(0, 212, 255, 0.1),
      transparent
    );
    filter: blur(3px);
  }
  
  .temple-left {
    left: -75px;
    background: linear-gradient(90deg, 
      transparent,
      rgba(0, 212, 255, 0.4),
      rgba(0, 212, 255, 0.8)
    );
  }
  
  .temple-left::before {
    background: linear-gradient(90deg, 
      transparent,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0.3)
    );
  }
  
  .temple-right {
    right: -75px;
  }
  
  /* Hinge accents where temples meet frame */
  .temple::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: rgba(0, 212, 255, 0.9);
    border: 2px solid rgba(0, 212, 255, 1);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 
      0 0 10px rgba(0, 212, 255, 0.8),
      inset 0 0 5px rgba(255, 255, 255, 0.5);
  }
  
  .temple-left::after {
    right: -5px;
  }
  
  .temple-right::after {
    left: -5px;
  }
  
  .video-info {
    padding: 0 0.5rem;
  }
  
  .video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
  }
  
  .video-info p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Custom Video Controls */
  .video-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .control-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  
  .control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
  }
  
  .control-btn:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  
  .progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light, #00d4ff));
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
    position: relative;
  }
  
  .progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
  }
  
  .time-display {
    color: white;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
    font-family: 'Courier New', monospace;
  }
  
  .volume-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
  }
  
  .volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
  }
  
  .volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
  }
  
  /* Playlist */
  .video-playlist {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 600px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  .video-playlist h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .video-playlist h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent), var(--accent-light, #00d4ff));
    border-radius: 2px;
  }
  
  .playlist-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .playlist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .playlist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: transparent;
    transition: all 0.3s;
  }
  
  .playlist-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
  }
  
  .playlist-item:hover::before {
    background: linear-gradient(180deg, var(--accent), var(--accent-light, #00d4ff));
  }
  
  .playlist-item.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent);
  }
  
  .playlist-item.active::before {
    background: linear-gradient(180deg, var(--accent), var(--accent-light, #00d4ff));
  }
  
  .playlist-thumbnail {
    width: 120px;
    height: 68px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
  }
  
  .playlist-thumbnail::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    opacity: 0.7;
  }
  
  .playlist-item.active .playlist-thumbnail::after {
    content: '⏸';
  }
  
  .playlist-info {
    flex: 1;
    min-width: 0;
  }
  
  .playlist-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .playlist-info p {
    font-size: 0.85rem;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .playlist-duration {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
    font-family: 'Courier New', monospace;
  }
  
  /* Custom Scrollbar for Playlist */
  .video-playlist::-webkit-scrollbar {
    width: 6px;
  }
  
  .video-playlist::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }
  
  .video-playlist::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
  }
  
  .video-playlist::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .video-player-container {
      grid-template-columns: 1fr;
    }
  
    .video-playlist {
      max-height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    #video-section {
      padding: 60px 0;
    }
  
    .video-main {
      padding: 1rem;
    }
    
    .video-wrapper {
      border-radius: 30px;
    }
    
    .video-wrapper video {
      border-radius: 30px;
    }
    
    .glasses-frame::before {
      border-radius: 30px;
    }
    
    /* Adjust bridge size on mobile */
    .glasses-frame::after {
      width: 35px;
      height: 10px;
    }
    
    /* Smaller temple arms on mobile */
    .temple {
      width: 50px;
    }
    
    .temple-left {
      left: -45px;
    }
    
    .temple-right {
      right: -45px;
    }
  
    .video-controls {
      flex-wrap: wrap;
      gap: 0.5rem;
    }
  
    .time-display {
      min-width: auto;
      font-size: 0.8rem;
    }
  
    .volume-container {
      width: 100%;
      justify-content: center;
    }
  
    .playlist-thumbnail {
      width: 80px;
      height: 45px;
    }
  
    .playlist-info h4 {
      font-size: 0.9rem;
    }
  
    .playlist-info p {
      font-size: 0.8rem;
    }
  }
  
  /* Loading State */
  .video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    pointer-events: none;
  }
  
  .video-loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
    margin-left: 1rem;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* Fullscreen Support */
  .video-wrapper:-webkit-full-screen {
    padding-bottom: 0;
  }
  
  .video-wrapper:-moz-full-screen {
    padding-bottom: 0;
  }
  
  .video-wrapper:fullscreen {
    padding-bottom: 0;
  }
  
  .fullscreen-btn {
    margin-left: auto;
  }