@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-light: #222;
  --color-text: #f5f5f5;
  --color-text-muted: #a0a0a0;
  --color-accent: #ff6600; /* Brand Orange */
  --color-accent-hover: #e65c00; /* Darker Brand Orange for hover */
  --color-gold: #ff6600; /* Unified brand accent color */
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-padding: 8rem 2rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.cursor-trail-sushi {
  position: fixed;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  pointer-events: none;
  z-index: 9999;
  animation: sushiTrail 1s ease-out forwards;
}

@keyframes sushiTrail {
  0% { 
    transform: translate(-50%, -50%) rotate(var(--rot)) scale(1);
    opacity: 0.8;
  }
  100% { 
    transform: translate(-50%, 0px) rotate(var(--rot-end)) scale(0);
    opacity: 0;
  }
}

/* Header / Nav */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: transparent;
  border-radius: 0;
  border: 1px solid transparent;
}

header.scrolled {
  top: 1.5rem;
  width: calc(100% - 3rem);
  max-width: 1200px;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

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

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

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--color-accent);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 102, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.btn-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: var(--transition-smooth);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
  background: var(--color-accent-hover);
  animation: none;
}

.btn-nav:hover::before {
  left: 100%;
  transition: 0.6s ease-in-out;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}



.btn::after, .btn-nav::after, .btn-instagram::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: blingSweep 6s infinite ease-in-out;
}

@keyframes blingSweep {
  0% { left: -100%; }
  40% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(216, 75, 55, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-reviews .play-icon {
  width: 18px;
  height: 18px;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,10,10,0) 0%, rgba(10,10,10,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3vh;
  opacity: 0.06;
  pointer-events: none;
  padding: 0;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 15%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 15%, rgba(0,0,0,0) 75%);
}

.watermark-row {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 10px;
}

.row-odd {
  animation: marquee-left 40s linear infinite;
}

.row-even {
  animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-20%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(0); }
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.hero-bg-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8rem, 22vw, 25rem);
  font-weight: 900;
  background: linear-gradient(to bottom, #ffffff 0%, #a8a8a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -2px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-bg-subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(60%);
}

.hero-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-img-container img {
  height: 85%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(100px);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85));
  animation: heroImageRise 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroImageRise {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-content-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 4rem 6rem;
  pointer-events: none;
}

.hero-bottom-left, .hero-bottom-right {
  pointer-events: auto;
  opacity: 0;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-bottom-left p, .hero-bottom-right p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--color-text);
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-bottom-right {
  text-align: right;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.scroll-down span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
}

.scroll-arrow {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-accent) 0%, transparent 100%);
  animation: scrollLineDrop 2.5s infinite ease-in-out;
}

@keyframes scrollLineDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Content Wrapper */
.content-wrapper {
  position: relative;
  z-index: 10;
  background-color: var(--color-bg);
  box-shadow: 0 -20px 40px rgba(0,0,0,0.5); /* Master shadow for all scrolling content */
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
  transition: border-radius 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.content-wrapper.is-at-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Chronology Timeline */
.chronology-timeline {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 60px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-base-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #ff8833);
  transform: translateY(-50%);
  z-index: 2;
  width: 0%; /* JS will animate this */
  transition: width 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-point {
  position: relative;
  z-index: 3;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
}

.timeline-point.active {
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.timeline-point.current {
  background: var(--color-accent);
  animation: pulseOrange 2s infinite;
  width: 16px;
  height: 16px;
}

.timeline-year {
  position: absolute;
  top: -30px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.5s ease;
}

.timeline-point.active .timeline-year {
  color: #fff;
}

.timeline-point.current .timeline-year {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  top: -35px;
}

@keyframes pulseOrange {
  0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

/* Philosophy Section */
.philosophy {
  padding: var(--section-padding);
  background-color: var(--color-bg);
  text-align: center;
  position: relative;
  z-index: 1;
}

.philosophy-deco-sushi {
  position: absolute;
  top: 10px;
  right: -50px;
  width: 350px;
  z-index: 5;
  transform: rotate(-10deg);
  filter: drop-shadow(-15px 25px 25px rgba(0,0,0,0.6));
  animation: floatDecoSushi 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatDecoSushi {
  0% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-15px) rotate(-15deg); }
  100% { transform: translateY(0) rotate(-10deg); }
}

@media (max-width: 900px) {
  .philosophy-deco-sushi {
    width: 180px;
    top: 20px;
    right: -30px;
    opacity: 0.5;
  }
}

.philosophy-deco-sushi-2 {
  position: absolute;
  bottom: -10px;
  left: -40px;
  width: 260px;
  z-index: 5;
  transform: rotate(5deg);
  filter: drop-shadow(15px 25px 25px rgba(0,0,0,0.6));
  animation: floatDecoSushi2 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatDecoSushi2 {
  0% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0) rotate(5deg); }
}

@media (max-width: 900px) {
  .philosophy-deco-sushi-2 {
    width: 160px;
    bottom: 0px;
    left: -20px;
    opacity: 0.5;
  }
}

.large-number {
  font-size: 1.6em;
  font-weight: 800;
  color: var(--color-accent);
  vertical-align: middle;
  line-height: 0.8;
  display: inline-block;
}

.philosophy-container {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before, .section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--color-text-muted);
  opacity: 0.5;
}

.philosophy h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-gold);
}

.philosophy p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* Masterclass Section */
.masterclass {
  padding: var(--section-padding);
  background-color: var(--color-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 10;
}

.masterclass-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.masterclass-container h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 5rem;
  line-height: 1.1;
  text-transform: none;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.mc-3d-container {
  width: 110vw;
  max-width: 110vw;
  height: 550px;
  overflow: hidden;
  position: relative;
  margin: 0 0 4rem -5vw;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mc-3d-scaler {
  transform: scale(2.2);
  transform-style: preserve-3d;
  width: 280px;
  height: 380px;
}

.mc-3d-ring {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotateRing 90s linear infinite;
}

.mc-3d-ring:hover {
  animation-play-state: paused;
}

@keyframes rotateRing {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(-360deg); }
}

.mc-3d-container .mc-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  backface-visibility: hidden;
  transition: box-shadow 0.4s ease;
  cursor: pointer;
}

.mc-card-1 { transform: rotateY(0deg) translateZ(-1426px); }
.mc-card-2 { transform: rotateY(12.857deg) translateZ(-1426px); }
.mc-card-3 { transform: rotateY(25.714deg) translateZ(-1426px); }
.mc-card-4 { transform: rotateY(38.571deg) translateZ(-1426px); }
.mc-card-5 { transform: rotateY(51.429deg) translateZ(-1426px); }
.mc-card-6 { transform: rotateY(64.286deg) translateZ(-1426px); }
.mc-card-7 { transform: rotateY(77.143deg) translateZ(-1426px); }
.mc-card-8 { transform: rotateY(90.000deg) translateZ(-1426px); }
.mc-card-9 { transform: rotateY(102.857deg) translateZ(-1426px); }
.mc-card-10 { transform: rotateY(115.714deg) translateZ(-1426px); }
.mc-card-11 { transform: rotateY(128.571deg) translateZ(-1426px); }
.mc-card-12 { transform: rotateY(141.429deg) translateZ(-1426px); }
.mc-card-13 { transform: rotateY(154.286deg) translateZ(-1426px); }
.mc-card-14 { transform: rotateY(167.143deg) translateZ(-1426px); }
.mc-card-15 { transform: rotateY(180.000deg) translateZ(-1426px); }
.mc-card-16 { transform: rotateY(192.857deg) translateZ(-1426px); }
.mc-card-17 { transform: rotateY(205.714deg) translateZ(-1426px); }
.mc-card-18 { transform: rotateY(218.571deg) translateZ(-1426px); }
.mc-card-19 { transform: rotateY(231.429deg) translateZ(-1426px); }
.mc-card-20 { transform: rotateY(244.286deg) translateZ(-1426px); }
.mc-card-21 { transform: rotateY(257.143deg) translateZ(-1426px); }
.mc-card-22 { transform: rotateY(270.000deg) translateZ(-1426px); }
.mc-card-23 { transform: rotateY(282.857deg) translateZ(-1426px); }
.mc-card-24 { transform: rotateY(295.714deg) translateZ(-1426px); }
.mc-card-25 { transform: rotateY(308.571deg) translateZ(-1426px); }
.mc-card-26 { transform: rotateY(321.429deg) translateZ(-1426px); }
.mc-card-27 { transform: rotateY(334.286deg) translateZ(-1426px); }
.mc-card-28 { transform: rotateY(347.143deg) translateZ(-1426px); }

.mc-3d-container .mc-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mc-3d-container .mc-card:hover {
  box-shadow: 0 15px 40px rgba(255,102,0,0.3);
}

.mc-3d-container .mc-card:hover img {
  transform: scale(1.05);
}

/* Masterclass Tags */
.mc-tag {
  position: absolute;
  background-color: #fff;
  color: #111;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  z-index: 0;
  pointer-events: none;
  animation: floatTag 4s ease-in-out infinite alternate;
}

.tag-hash {
  color: var(--color-accent);
  margin-right: 5px;
}

.mc-tag-1 { top: -40px; left: -100px; animation-delay: 0s; }
.mc-tag-2 { bottom: -60px; right: -50px; animation-delay: 1s; }
.mc-tag-3 { top: 50%; right: -150px; animation-delay: 2s; }
.mc-tag-4 { top: 20%; left: -180px; animation-delay: 0.5s; }

@keyframes floatTag {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

.mc-description {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.mc-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.mc-actions .btn {
  min-width: 180px;
  justify-content: center;
}

/* Rolling Sushi Divider */
.rolling-divider {
  position: relative;
  width: 100%;
  height: 0;
  z-index: 20;
  overflow: visible;
}

.rolling-sushi {
  position: absolute;
  top: -55px;
  left: -150px;
  width: 110px;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.8));
  animation: rollAcross 12s linear infinite;
}

@keyframes rollAcross {
  0% {
    left: -150px;
    transform: rotate(0deg);
  }
  100% {
    left: 110%;
    transform: rotate(720deg);
  }
}

/* E-commerce CTA Section */
.menu-cta {
  padding: 12rem 2rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: var(--color-bg);
  position: relative;
  z-index: 10;
  text-align: center;
  overflow: hidden;
}

.menu-cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.6), rgba(10, 10, 10, 0.8));
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 3.5rem 4rem 4rem 4rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.6),
    0 0 120px rgba(255, 102, 0, 0.15);
}

.floating-rolls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.f-roll { position: absolute; }
.f-roll img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
  animation: floatRoll 25s infinite ease-in-out alternate;
}

.roll-1 { top: 10%; left: 5%; width: 140px; transform: rotate(15deg); }
.roll-1 img { animation-delay: 0s; animation-duration: 20s; }

.roll-2 { top: 60%; left: 10%; width: 200px; transform: rotate(-25deg); }
.roll-2 img { animation-delay: -5s; animation-duration: 24s; }

.roll-3 { top: 15%; right: 5%; width: 160px; transform: rotate(45deg); }
.roll-3 img { animation-delay: -10s; animation-duration: 22s; }

.roll-4 { top: 65%; right: 8%; width: 150px; transform: rotate(-15deg); }
.roll-4 img { animation-delay: -15s; animation-duration: 26s; }

.roll-5 { top: -5%; left: 40%; width: 350px; transform: rotate(80deg); z-index: 5; opacity: 0.8; }
.roll-5 img { filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8)) blur(6px); animation-delay: -7s; animation-duration: 30s; }

.roll-6 { bottom: -10%; right: 30%; width: 380px; transform: rotate(-45deg); z-index: 5; opacity: 0.8; }
.roll-6 img { filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8)) blur(8px); animation-delay: -12s; animation-duration: 35s; }

@keyframes floatRoll {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-40px) rotate(15deg); }
  100% { transform: translateY(20px) rotate(-10deg); }
}

.menu-cta h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.menu-cta p {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Tubus Section */
.tubus-section {
  padding: 3rem 2rem;
  background-color: #111;
  position: relative;
  overflow: visible;
  z-index: 20;
}

.tubus-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.tubus-text {
  flex: 1;
  max-width: 500px;
  z-index: 10;
}

.tubus-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.tubus-text p {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.tubus-images {
  flex: 1;
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.tubus-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.4) 0%, rgba(200, 50, 0, 0.2) 50%, rgba(0, 0, 0, 0) 80%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: pulseTubusGlow 8s infinite alternate ease-in-out;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.tubus-section.active .tubus-glow {
  opacity: 1;
}

@keyframes pulseTubusGlow {
  0% { transform: translate(-50%, -50%) scale(1); filter: blur(40px); }
  50% { transform: translate(-45%, -55%) scale(1.2); filter: blur(60px); }
  100% { transform: translate(-55%, -45%) scale(0.9); filter: blur(50px); }
}


.tubus-wrap {
  position: absolute;
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.tubus-img {
  width: 160px;
  filter: drop-shadow(-15px 25px 20px rgba(0,0,0,0.8));
}

/* Initial slide-in states */
.tubus-wrap-1 { transform: translate(-140px, 150px) rotate(15deg); }
.tubus-wrap-2 { transform: translate(0px, 100px) rotate(20deg); z-index: 2; }
.tubus-wrap-3 { transform: translate(140px, 50px) rotate(25deg); z-index: 3; }

/* Active states (sliding in) */
.tubus-section.active .tubus-wrap {
  opacity: 1;
}

.tubus-section.active .tubus-wrap-1 {
  transform: translate(-140px, 80px) rotate(25deg);
  transition-delay: 0.1s;
}

.tubus-section.active .tubus-wrap-2 {
  transform: translate(0px, 0px) rotate(30deg);
  transition-delay: 0.3s;
}

.tubus-section.active .tubus-wrap-3 {
  transform: translate(140px, -80px) rotate(35deg);
  transition-delay: 0.5s;
}

/* Continuous float on the images inside */
.tubus-section.active .tubus-wrap-1 .tubus-img { animation: floatT1 6s ease-in-out infinite 1.1s; }
.tubus-section.active .tubus-wrap-2 .tubus-img { animation: floatT2 7s ease-in-out infinite 1.3s; }
.tubus-section.active .tubus-wrap-3 .tubus-img { animation: floatT3 6.5s ease-in-out infinite 1.5s; }

@keyframes floatT1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px) rotate(-2deg); } }
@keyframes floatT2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px) rotate(2deg); } }
@keyframes floatT3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px) rotate(-2deg); } }

@media (max-width: 900px) {
  .tubus-container {
    flex-direction: column;
    text-align: center;
  }
  
  .tubus-text h2 {
    font-size: 2.5rem;
  }
  
  .tubus-images {
    height: 650px;
    width: 100%;
    margin-top: 5rem;
    margin-bottom: 3rem;
  }
  
  .tubus-img {
    width: 100px;
  }
  
  /* Initial mobile states */
  .tubus-wrap-1 { transform: translate(-80px, 100px) rotate(15deg); }
  .tubus-wrap-2 { transform: translate(0px, 50px) rotate(20deg); }
  .tubus-wrap-3 { transform: translate(80px, 0px) rotate(25deg); }
  
  /* Active mobile states */
  .tubus-section.active .tubus-wrap-1 { transform: translate(-80px, 50px) rotate(25deg); }
  .tubus-section.active .tubus-wrap-2 { transform: translate(0px, 0px) rotate(30deg); }
  .tubus-section.active .tubus-wrap-3 { transform: translate(80px, -50px) rotate(35deg); }
}

/* Instagram Section */
.instagram-section {
  padding: 6rem 2rem;
  background: var(--color-bg);
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.instagram-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}

.instagram-phone {
  position: relative;
  flex: 0 0 350px;
}

.instagram-phone img {
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: 40px;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-section:hover .instagram-phone img {
  transform: translateY(0);
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 450px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  border-radius: 50%;
  animation: liveGlow 10s ease-in-out infinite alternate;
}

@keyframes liveGlow {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(80px);
    border-radius: 50%;
  }
  50% {
    transform: translate(-55%, -45%) scale(1.1) rotate(180deg);
    filter: blur(100px);
    border-radius: 40% 60% 60% 40%;
  }
  100% {
    transform: translate(-45%, -55%) scale(0.95) rotate(360deg);
    filter: blur(70px);
    border-radius: 60% 40% 40% 60%;
  }
}

.instagram-text {
  flex: 1;
  max-width: 600px;
}

.instagram-text h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ig-highlight {
  background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.instagram-text p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: white;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-instagram:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}

.btn-instagram .ig-icon {
  margin-right: 12px;
}

@media (max-width: 900px) {
  .instagram-container {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .instagram-text h2 { font-size: 2.5rem; }
  
  .instagram-phone { 
    flex: 0 0 auto;
    width: 280px;
    margin: 0 auto;
    z-index: 1;
  }
  
  .instagram-phone img {
    -webkit-mask-image: none;
    mask-image: none;
    transform: translateY(0);
  }

  .instagram-phone::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -10px;
    right: -10px;
    height: 70%;
    background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.9) 45%, rgba(10,10,10,1) 60%);
    z-index: 5;
    pointer-events: none;
  }

  .glow-effect {
    top: 25%;
    width: 200px;
    height: 250px;
  }
  
  .instagram-text {
    position: relative;
    z-index: 10;
    margin-top: -320px;
  }

  .btn-instagram { justify-content: center; }
}

/* Footer */
footer {
  background-color: #111;
  margin: 0 2rem 2rem 2rem;
  padding: 5rem 4rem 0;
  border-radius: 40px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-col p, .footer-col a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.footer-big-text {
  font-size: 20vw;
  font-weight: 900;
  text-align: center;
  line-height: 0.75;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(255, 102, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-left: -4rem;
  margin-right: -4rem;
  transform: translateY(20%);
}

.jcs-agency-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.jcs-agency-link:hover {
  color: var(--color-accent-hover);
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
}


/* Responsive */
@media (max-width: 992px) {
  .mc-3d-scaler {
    transform: scale(1.3);
  }
}



/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 5px;
}

.squares-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  width: 26px;
  height: 26px;
}

.squares-icon span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.mobile-menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-slider {
  position: relative;
  width: 100%;
  transform: translateY(calc(100% + 150px));
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-card {
  position: relative;
  width: 100%;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 30px 30px 0 0;
  padding: 3rem 2rem 4rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-roll {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  z-index: -1;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8));
  pointer-events: none;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #fff;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text);
  display: block;
}

.mobile-btn {
  width: 100%;
  max-width: 300px;
  margin-top: 1rem;
}

/* Mobile Menu Active States */
body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu-overlay {
  pointer-events: auto;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
}

body.menu-open .mobile-menu-slider {
  transform: translateY(0);
}

.hero-mobile-btn {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav, .desktop-btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .logo img {
    height: 24px;
  }

  header {
    padding: 1rem 1.5rem;
  }

  header.scrolled {
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .masterclass-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .mc-3d-container {
    height: 450px;
  }
  .mc-3d-scaler {
    transform: scale(1.4);
  }
  .mc-3d-container .mc-card {
    width: 300px;
    height: 420px;
    left: -10px;
    top: -20px;
  }

  .mc-description {
    padding: 0 1rem;
    font-size: 1rem;
  }

  .mc-actions {
    flex-direction: column;
    padding: 0 1rem;
  }
  
  .mc-tag {
    display: none;
  }

  .hero-bg-text {
    top: 32%;
    width: 100vw;
  }

  .hero-bg-text span {
    font-size: 19.5vw;
    letter-spacing: -1px;
  }

  .hero-mobile-btn {
    display: inline-block;
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    white-space: nowrap;
    z-index: 10;
    animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
    opacity: 0;
  }

  .hero-img-container img {
    height: 65%;
    transform: translateY(0);
    margin-bottom: 15vh;
  }

  .hero-content-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem 1rem 4rem;
    gap: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0) 100%);
  }
  
  .hero-bottom-left, .hero-bottom-right {
    text-align: center;
  }
  
  .hero-bottom-left p, .hero-bottom-right p {
    font-size: 0.9rem;
  }

  .hero-bottom-left::after {
    content: '';
    display: block;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.4), transparent);
    margin: 1.5rem auto -0.5rem;
  }

  .scroll-down {
    display: none;
  }
  
  .menu-cta {
    padding: 6rem 1rem;
  }

  .menu-cta-container {
    padding: 2.5rem 1rem !important;
    margin: 0;
    border-radius: 20px;
    width: 100%;
  }

  .menu-cta-container h2 {
    font-size: 2.2rem !important;
    margin-bottom: 1rem !important;
  }

  .menu-cta-container p {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .menu-cta-container .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }


  .roll-1 { width: 80px; }
  .roll-2 { width: 120px; }
  .roll-3 { width: 100px; }
  .roll-4 { width: 90px; }
  .roll-5 { width: 180px; top: 0%; }
  .roll-6 { width: 200px; bottom: 0%; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  footer {
    margin: 0 1rem 1rem 1rem;
    padding: 3rem 1.5rem 0;
    border-radius: 20px;
  }
  
  .footer-big-text {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

/* Reviews Modal */
.reviews-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(10, 5, 10, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.reviews-modal.active {
  opacity: 1;
  pointer-events: auto;
}

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

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.3;
  animation: moveStars 100s linear infinite, twinkleStars 4s ease-in-out infinite alternate;
}

.stars-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 30px 40px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 80px 10px, #eee, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 150px 180px, #ddd, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 110px 90px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 190px 140px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 50px 110px, #ddd, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 250px 250px;
  opacity: 0.1;
  animation: moveStars 80s linear infinite, twinkleStars 3s ease-in-out infinite alternate-reverse;
}

@keyframes moveStars {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

@keyframes twinkleStars {
  0% { opacity: 0.1; }
  50% { opacity: 0.6; }
  100% { opacity: 0.2; }
}

.floating-sushi {
  position: absolute;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  opacity: 0.7;
}

.sushi-1 { width: 80px; top: 10%; left: 15%; animation: floatSushi 15s ease-in-out infinite alternate 0s; transform: rotate(15deg); }
.sushi-2 { width: 110px; top: 35%; left: 5%; animation: floatSushi 12s ease-in-out infinite alternate -3s; transform: rotate(-20deg); }
.sushi-3 { width: 60px; top: 60%; left: 12%; animation: floatSushi 18s ease-in-out infinite alternate -7s; transform: rotate(45deg); }
.sushi-4 { width: 90px; top: 85%; left: 8%; animation: floatSushi 14s ease-in-out infinite alternate -1s; transform: rotate(10deg); }
.sushi-5 { width: 100px; top: 15%; right: 12%; animation: floatSushi 16s ease-in-out infinite alternate -2s; transform: rotate(-15deg); }
.sushi-6 { width: 70px; top: 40%; right: 6%; animation: floatSushi 11s ease-in-out infinite alternate -5s; transform: rotate(30deg); }
.sushi-7 { width: 130px; top: 65%; right: 15%; animation: floatSushi 19s ease-in-out infinite alternate -8s; transform: rotate(-45deg); }
.sushi-8 { width: 85px; top: 90%; right: 5%; animation: floatSushi 13s ease-in-out infinite alternate -4s; transform: rotate(25deg); }
.sushi-9 { width: 150px; top: 5%; left: 35%; animation: floatSushi 20s ease-in-out infinite alternate -6s; transform: rotate(-10deg); }
.sushi-10 { width: 110px; top: 8%; right: 30%; animation: floatSushi 17s ease-in-out infinite alternate -9s; transform: rotate(60deg); }
.sushi-11 { width: 75px; top: 85%; left: 35%; animation: floatSushi 15s ease-in-out infinite alternate -2.5s; transform: rotate(-80deg); }
.sushi-12 { width: 95px; top: 92%; right: 35%; animation: floatSushi 12s ease-in-out infinite alternate -5.5s; transform: rotate(15deg); }

@keyframes floatSushi {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(15deg); }
  100% { transform: translateY(20px) rotate(-10deg); }
}

.reviews-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.reviews-logo {
  height: 40px;
  width: auto;
}

.reviews-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.reviews-close:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

.reviews-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  height: 80vh;
  max-height: 900px;
}

.video-wrapper {
  height: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  border: 1px solid rgba(255, 102, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 102, 0, 0.15);
  overflow: hidden;
  background: #000;
  position: relative;
}

#reviews-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-video-ui {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 5;
}

.mute-btn {
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  align-self: flex-end;
  transition: background 0.3s ease;
}

.mute-btn:hover {
  background: var(--color-accent);
}

.mute-btn svg {
  width: 18px;
  height: 18px;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--color-accent);
  width: 0%;
  border-radius: 2px;
}

.video-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.control-btn svg {
  width: 24px;
  height: 24px;
}

.control-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--color-accent);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .reviews-content {
    height: 100vh;
    width: 100vw;
    max-height: none;
    gap: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .video-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  
  .reviews-header {
    height: auto;
    padding: 1.5rem;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 20;
  }
  
  .reviews-logo {
    opacity: 0.7;
    height: 35px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.8));
  }
  
  .reviews-close {
    position: static;
    pointer-events: auto;
    background-color: var(--color-accent);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
    box-shadow: 0 0 15px rgba(255,102,0,0.5);
  }
  
  .video-controls {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin-bottom: 0;
    z-index: 25;
  }
  
  .control-btn {
    width: 44px;
    height: 44px;
  }
  
  .custom-video-ui {
    padding-bottom: 2rem;
  }
}