/* Core Theme */
:root {
  --bg: #121212;
  --text: #e8e8e8;
  --muted: #a5a5a5;
  --cyan: #00ffff;
  --magenta: #ff00ff;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-stroke: rgba(255, 255, 255, 0.12);
}

/* Disable all animations and transitions */
*, *::before, *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI,
    Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.4;
  cursor: auto;
  overflow-x: hidden;
}

/* Enable cursor on mobile devices */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  
  .custom-cursor {
    display: none !important;
  }
}

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: #000;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--glass-stroke);
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}

/* Canvas background */
#hero-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 1;
  background: radial-gradient(1200px 1200px at 50% 40%, rgba(0, 255, 255, 0.08), transparent),
              radial-gradient(900px 900px at 60% 60%, rgba(255, 0, 255, 0.06), transparent),
              var(--bg);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #hero-canvas { display: none; }
}

/* Mobile Banner */
.mobile-banner {
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 120px rgba(0,255,255,0.08), 0 0 120px rgba(255,0,255,0.06);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.1, 1);
  will-change: opacity, transform;
}
.section.is-visible .mobile-banner {
  opacity: 1;
  transform: translateY(0);
}
.section.is-exiting .mobile-banner {
  opacity: 0;
  transform: translateY(-20px);
}

.mobile-banner__image {
  position: relative;
  height: min(60vh, 500px);
  overflow: hidden;
}
.mobile-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) contrast(1.1);
}
.mobile-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  display: grid;
  place-items: center;
  padding: 40px 24px;
}
.mobile-banner__content {
  text-align: center;
  max-width: 500px;
  color: var(--text);
}
.mobile-banner__content h3 {
  margin: 0 0 12px 0;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.mobile-banner__content p {
  margin: 0 0 28px 0;
  font-size: clamp(14px, 2.2vw, 18px);
  color: var(--muted);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Google Play Button */
.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(0,255,255,0.15), rgba(255,0,255,0.15));
  border: 1px solid color-mix(in oklab, var(--cyan), var(--magenta) 50%);
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: all 300ms cubic-bezier(0.2, 0.7, 0.1, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(0,255,255,0.1), 0 0 40px rgba(255,0,255,0.08);
  backdrop-filter: blur(10px);
  will-change: transform, box-shadow;
}
.play-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 0 60px rgba(0,255,255,0.15), 0 0 60px rgba(255,0,255,0.12);
  border-color: var(--cyan);
}
.play-button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.play-button__icon {
  width: 24px;
  height: 24px;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(0,255,255,0.5));
}
.play-button__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.play-button__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.play-button__store {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .mobile-banner__overlay {
    padding: 24px 16px;
  }
  .play-button {
    padding: 12px 20px;
    gap: 10px;
  }
  .play-button__icon {
    width: 20px;
    height: 20px;
  }
  .play-button__label {
    font-size: 14px;
  }
  .play-button__store {
    font-size: 11px;
  }
}

/* Centered navigation */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.nav__list {
  margin: 0;
  padding: 8px 12px;
  display: flex;
  gap: 16px;
  list-style: none;
  backdrop-filter: saturate(120%) blur(8px);
  background: var(--glass);
  border: 1px solid var(--glass-stroke);
  border-radius: 14px;
}

.nav__list--center {
  justify-content: center;
}

.nav__link {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.nav__link::after {
  content: "";
  position: absolute;
  inset: auto 8px -2px 8px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  opacity: 0;
  transform: translateY(6px);
  transition: 200ms ease;
  backdrop-filter: blur(10px);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.nav__link.is-active {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--glass-stroke);
}

/* Liquid Apple effect for nav links */
.nav__link {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 70%, transparent 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nav__link:active {
  transform: scale(1.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav__link:active::before {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
}

.nav__link:active::after {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
}

/* Drag effect styles */
.nav__link.is-dragging {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.nav__link.is-dragging::before {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
}

.nav__link.is-dragging::after {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
}


/* Hero */
.hero {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 80px 24px 48px;
  opacity: 1;
  transform: none;
}

.hero__center {
  text-align: center;
  max-width: 1100px;
  width: 100%;
}

.hero__title {
  margin: 0 0 10px 0;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(0, 255, 255, 0.18), 0 0 22px rgba(255, 0, 255, 0.16);
}

.hero__subtitle {
  margin: 0 0 28px 0;
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--muted);
  line-height: 1.4;
}

.hero__subtitle--tr {
  font-size: clamp(14px, 2.1vw, 20px);
  color: var(--color-text-tertiary);
  display: block;
  margin-top: 8px;
  opacity: 0.8;
}

.hero__glass {
  margin-inline: auto;
  max-width: 760px;
  padding: 14px 18px;
  backdrop-filter: blur(10px) saturate(120%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 255, 255, 0.08), 0 0 80px rgba(255, 0, 255, 0.06);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag {
  --glow: var(--cyan);
  color: var(--text);
  border: 1px solid color-mix(in oklab, var(--glow), white 12%);
  background: color-mix(in oklab, var(--glow), transparent 92%);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 500;
  text-shadow: 0 0 12px color-mix(in oklab, var(--glow), white 10%);
  box-shadow: inset 0 0 12px color-mix(in oklab, var(--glow), transparent 88%),
              0 0 22px color-mix(in oklab, var(--glow), transparent 80%);
  cursor: default;
  user-select: none;
}

.tag--cyan { --glow: var(--cyan); }
.tag--magenta { --glow: var(--magenta); }

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 1000;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 5;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(30, 30, 30, 0.95));
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding: 40px 0;
  margin-top: 80px;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer__link:hover {
  color: var(--cyan);
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.footer__link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.footer__link:hover svg {
  transform: scale(1.1);
}

.footer__text {
  color: var(--color-text-tertiary);
  font-size: 14px;
  opacity: 0.8;
}

.footer__text p {
  margin: 0;
}

/* Custom cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, rgba(255, 0, 255, 0.4) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  mix-blend-mode: screen;
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 0%, rgba(255, 0, 255, 0.3) 50%, transparent 70%);
}

/* Mobile: Clean, static, optimized version */
@media (max-width: 768px) {
  /* Hide animated canvas */
  #hero-canvas {
    display: none !important;
  }
  
  /* Hero section - clean and simple */
  .hero {
    background: #121212;
    padding: 60px 16px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero__center {
    width: 100%;
    max-width: 400px;
  }
  
  .hero__title {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
    display: block;
  }
  
  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.4;
    display: block;
  }
  
  .hero__subtitle--tr {
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 4px;
  }
  
  .hero__glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    display: block;
  }
  
  .hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
    margin: 0;
  }
  
  /* Navigation - simple and clean */
  .nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  
  .nav__list {
    display: flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
  }
  
  .nav__link {
    background: transparent;
    border: none;
    color: #ccc;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav__link.is-active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }
  
  /* Sections - clean and visible */
  .section {
    padding: 40px 16px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
  }
  
  .section p {
    font-size: 14px;
    margin-bottom: 24px;
    color: #ccc;
    line-height: 1.5;
  }
  
  /* Gallery - clean grid */
  .gallery,
  .video-gallery,
  .web-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
  
  .gallery__item,
  .video-item,
  .web-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
  }
  
  .gallery__item img,
  .video-item img,
  .web-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Lightbox - mobile optimized */
  .lightbox,
  .video-lightbox,
  .web-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .lightbox.is-open,
  .video-lightbox.is-open,
  .web-lightbox.is-open {
    display: flex;
  }
  
  .lightbox__backdrop,
  .video-lightbox__backdrop,
  .web-lightbox__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
  }
  
  .lightbox__stage,
  .video-lightbox__stage,
  .web-lightbox__stage {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1001;
  }
  
  .lightbox__img,
  .video-lightbox__player,
  .web-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
  }
  
  /* Mobile banner */
  .mobile-banner {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
  }
  
  .mobile-banner__image {
    height: 200px;
  }
  
  .mobile-banner__content {
    padding: 20px;
  }
  
  .mobile-banner__content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
  }
  
  .mobile-banner__content p {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 16px;
  }
  
  .play-button {
    background: linear-gradient(135deg, #00a8ff, #0097e6);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  
  /* Footer */
  .footer {
    padding: 40px 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer__content {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer__social {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .footer__link {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer__text {
    font-size: 12px;
    color: #999;
  }
  
  /* Hide scroll to top on mobile */
  .scroll-to-top {
    display: none;
  }
  
  /* Custom cursor - hide on mobile */
  .custom-cursor {
    display: none;
  }
}

/* Desktop: Hide canvas (no animations) */
@media (min-width: 769px) {
  #hero-canvas {
    display: none;
  }
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 20px 40px;
  }
  
  .hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .hero__subtitle {
    font-size: clamp(14px, 2.2vw, 20px);
  }
  
  .hero__glass {
    max-width: 90%;
    padding: 12px 16px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
  
  .video-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .web-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 16px 20px !important;
    min-height: 70vh !important;
  }
  
  .hero__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 12px;
  }
  
  .hero__subtitle {
    font-size: clamp(11px, 2.2vw, 16px);
    margin-bottom: 16px;
  }
  
  .hero__subtitle--tr {
    font-size: clamp(10px, 2vw, 14px);
  }
  
  .hero__glass {
    max-width: 95%;
    margin-top: 16px;
    padding: 10px 14px;
  }
  
  .hero__tags {
    gap: 8px;
  }
  
  .tag {
    padding: 6px 10px;
    font-size: 14px;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  .section h2 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 8px;
  }
  
  .section p {
    font-size: clamp(13px, 2.5vw, 16px);
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .gallery__item {
    border-radius: 8px;
  }
  
  .video-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .web-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .mobile-banner {
    margin-top: 24px;
    border-radius: 12px;
  }
  
  .mobile-banner__overlay {
    padding: 20px 16px;
  }
  
  .mobile-banner__content h3 {
    font-size: clamp(20px, 5vw, 28px);
  }
  
  .mobile-banner__content p {
    font-size: clamp(12px, 2.5vw, 16px);
  }
  
  .play-button {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__link {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .footer__link svg {
    width: 18px;
    height: 18px;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 640px) {
  .nav { 
    top: 16px; 
    left: 50%; 
    transform: translateX(-50%); 
  }
  
  .nav__list { 
    gap: 8px; 
    padding: 6px 8px; 
  }
  
  .nav__link { 
    padding: 6px 8px; 
    font-size: 12px;
  }
  
  .hero { 
    padding-top: 80px; 
    padding-bottom: 20px;
  }
  
  .hero__title {
    font-size: clamp(1.8rem, 12vw, 2.5rem);
  }
  
  .hero__subtitle {
    font-size: clamp(11px, 3vw, 16px);
  }
  
  .hero__subtitle--tr {
    font-size: clamp(10px, 2.8vw, 14px);
  }
  
  .hero__glass {
    padding: 8px 12px;
  }
  
  .hero__tags {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .tag {
    padding: 5px 8px;
    font-size: 12px;
  }
  
  .section {
    padding: 30px 12px;
  }
  
  .section h2 {
    font-size: clamp(20px, 8vw, 28px);
  }
  
  .section p {
    font-size: clamp(12px, 3vw, 14px);
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
  }
  
  .video-gallery {
    gap: 12px;
  }
  
  .web-gallery {
    gap: 12px;
  }
  
  .mobile-banner {
    margin-top: 16px;
  }
  
  .mobile-banner__overlay {
    padding: 16px 12px;
  }
  
  .mobile-banner__content h3 {
    font-size: clamp(18px, 6vw, 24px);
  }
  
  .mobile-banner__content p {
    font-size: clamp(11px, 3vw, 14px);
  }
  
  .play-button {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .footer {
    padding: 30px 0;
    margin-top: 60px;
  }
  
  .footer__content {
    gap: 20px;
  }
  
  .footer__link {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .footer__link svg {
    width: 16px;
    height: 16px;
  }
  
  .footer__text {
    font-size: 12px;
  }
  
  .scroll-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 8px 20px;
  }
  
  .hero__title {
    font-size: clamp(1.5rem, 14vw, 2rem);
  }
  
  .hero__subtitle {
    font-size: clamp(10px, 3.5vw, 14px);
  }
  
  .hero__subtitle--tr {
    font-size: clamp(9px, 3.2vw, 12px);
  }
  
  .hero__glass {
    padding: 6px 10px;
  }
  
  .hero__tags {
    gap: 4px;
  }
  
  .tag {
    padding: 4px 6px;
    font-size: 11px;
  }
  
  .section {
    padding: 24px 8px;
  }
  
  .section h2 {
    font-size: clamp(18px, 10vw, 24px);
  }
  
  .section p {
    font-size: clamp(11px, 3.5vw, 13px);
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 6px;
  }
  
  .video-gallery {
    gap: 10px;
  }
  
  .web-gallery {
    gap: 10px;
  }
  
  .mobile-banner {
    margin-top: 12px;
  }
  
  .mobile-banner__overlay {
    padding: 12px 8px;
  }
  
  .mobile-banner__content h3 {
    font-size: clamp(16px, 8vw, 20px);
  }
  
  .mobile-banner__content p {
    font-size: clamp(10px, 3.5vw, 12px);
  }
  
  .play-button {
    padding: 8px 12px;
    font-size: 11px;
  }
  
  .footer {
    padding: 24px 0;
    margin-top: 40px;
  }
  
  .footer__content {
    gap: 16px;
  }
  
  .footer__link {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .footer__link svg {
    width: 14px;
    height: 14px;
  }
  
  .footer__text {
    font-size: 11px;
  }
  
  .scroll-to-top {
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  
  .scroll-to-top svg {
    width: 16px;
    height: 16px;
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 5;
  padding: 96px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 1;
  transform: none;
}

/* Mobile section spacing override */
@media (max-width: 768px) {
  .section {
    padding: 30px 16px !important;
    border-top: none !important;
  }
}
/* Section visibility classes removed - all sections are now always visible */
.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 5vw, 48px);
  opacity: 1;
  transform: none;
}
.section p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 2.2vw, 18px);
  opacity: 1;
  transform: none;
}

html {
  scroll-behavior: auto;
}

/* Slider (Liquid Glass) */
/* Gallery Grid */
.gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--glass-stroke);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  opacity: 1;
  transform: none;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}
.lightbox.is-open { display: block; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 1;
}
.lightbox__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
 .lightbox__img {
   max-width: 92vw;
   max-height: 82vh;
   object-fit: contain;
   border-radius: 14px;
   box-shadow: 0 30px 120px rgba(0,0,0,0.6), 0 0 120px rgba(0,255,255,0.08), 0 0 120px rgba(255,0,255,0.07);
   transform: none;
   opacity: 1;
 }

/* Video Gallery */
.video-gallery {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.video-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transform: none;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) contrast(1.1);
}

/* Video thumbnail styling */
.video-thumbnail {
  position: relative;
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) contrast(1.1);
}

.video-thumbnail::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  opacity: 0.9;
  z-index: 2;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  display: grid;
  place-items: center;
  opacity: 1;
}

.play-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(0,255,255,0.2), 0 0 40px rgba(255,0,255,0.15);
  transform: scale(1);
}

.play-icon svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.video-item h3 {
  margin: 16px 20px 8px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.video-item p {
  margin: 0 20px 20px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* Video Lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.video-lightbox.is-open { 
  display: block; 
}

.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  opacity: 1;
}

.video-lightbox__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
}

.video-lightbox__player {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 30px 120px rgba(0,0,0,0.6), 0 0 120px rgba(0,255,255,0.08), 0 0 120px rgba(255,0,255,0.07);
  transform: scale(1);
  opacity: 1;
}

.video-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--glass-stroke);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1;
}

.video-lightbox__close svg {
  width: 20px;
  height: 20px;
}

/* Web Gallery */
.web-gallery {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.web-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--glass-stroke);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  opacity: 1;
  transform: none;
}

.web-item__image {
  position: relative;
  width: 100%;
  height: 70%;
  overflow: hidden;
}

.web-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) contrast(1.1);
}

.web-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  display: grid;
  place-items: center;
  opacity: 1;
}

.web-item__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(0,255,255,0.2), 0 0 40px rgba(255,0,255,0.15);
  transform: scale(1);
}

.web-item__icon svg {
  width: 20px;
  height: 20px;
}

.web-item__content {
  padding: 16px 20px 20px 20px;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.web-item__title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.web-item__description {
  margin: 0 0 12px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-item__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.web-item__tech-tag {
  font-size: 11px;
  padding: 4px 8px;
  background: rgba(0,255,255,0.1);
  color: var(--cyan);
  border-radius: 8px;
  border: 1px solid rgba(0,255,255,0.2);
}

/* Web Lightbox */
.web-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.web-lightbox.is-open { 
  display: block; 
}

.web-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  opacity: 1;
}

.web-lightbox__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow-y: auto;
}

.web-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 120px rgba(0,0,0,0.6), 0 0 120px rgba(0,255,255,0.08), 0 0 120px rgba(255,0,255,0.07);
  transform: scale(1);
  opacity: 1;
  margin: auto;
}


.web-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--glass-stroke);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1;
}

.web-lightbox__close svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .web-lightbox__stage {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .video-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .video-lightbox__stage {
    padding: 20px;
  }
  
  .video-lightbox__player {
    max-width: 95vw;
    max-height: 70vh;
  }
  
  .web-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .web-lightbox__stage {
    padding: 16px;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
  
  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__link {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .footer__link svg {
    width: 18px;
    height: 18px;
  }
}


