:root {
  color-scheme: dark;
  --bg: #030308;
  --surface: rgba(10, 12, 18, 0.88);
  --surface-strong: rgba(12, 16, 28, 0.96);
  --text: #ecf3ff;
  --muted: #9aa5c8;
  --primary: #7c4dff;
  --accent: #00ffe7;
  --accent-2: #ff2d9f;
  --border-glow: linear-gradient(135deg, rgba(0,255,231,0.9), rgba(124,77,255,0.9), rgba(255,45,159,0.9));
  font-family: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 10%, rgba(124,77,255,0.24), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(0,255,231,0.18), transparent 18%),
    radial-gradient(circle at 50% 92%, rgba(255,45,159,0.08), transparent 22%),
    linear-gradient(180deg, #070a16 0%, #020207 55%, #040510 100%);
  background-attachment: fixed;
  animation: bgShift 60s ease-in-out infinite;
  color: var(--text);
  overflow-x: hidden;
}

@media (max-width: 980px) {
  body {
    background-attachment: fixed;
  }

  .hero-media,
  .video-card,
  .hero-video,
  .video-overlay {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .page-float,
  .page-burger,
  .page-pizza,
  .particle,
  .rgb-particle,
  .shape {
    animation-duration: 40s !important;
    will-change: auto;
    opacity: 0.72;
  }

  .page-float,
  .page-burger,
  .page-pizza {
    animation-duration: 35s !important;
    opacity: 0.85;
  }

  .particle,
  .rgb-particle {
    display: block !important;
  }

  .shape {
    filter: blur(0.8px) !important;
  }
}

.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(124,77,255,0.12), transparent 14%),
    radial-gradient(circle at 85% 18%, rgba(0,255,231,0.1), transparent 12%),
    radial-gradient(circle at 50% 85%, rgba(255,45,159,0.07), transparent 14%);
  opacity: 0.98;
  pointer-events: none;
}

img, video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, rgba(0,255,231,0.9), rgba(124,77,255,0.9), rgba(255,45,159,0.9));
  z-index: 100;
}

.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-floats {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-float {
  position: absolute;
  width: 110px;
  opacity: 0.78;
  transform: translateZ(0);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0,255,231,0.12);
  box-shadow: 0 18px 34px rgba(0,255,231,0.07);
  filter: brightness(0.8) saturate(0.85);
  background: rgba(4,8,18,0.55);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.page-burger {
  top: 10%;
  left: 5%;
  animation: floatX 18s ease-in-out infinite;
}

.page-burger-1 {
  width: 110px;
}

.page-burger-2 {
  width: 92px;
  top: 24%;
  left: 18%;
  opacity: 0.88;
  animation: floatY 20s ease-in-out infinite;
}

.page-burger-3 {
  width: 84px;
  top: 62%;
  left: 3%;
  opacity: 0.8;
  animation: floatZ 22s ease-in-out infinite;
}

.page-pizza {
  bottom: 10%;
  right: 8%;
  animation: floatY 14s ease-in-out infinite;
}

.page-pizza-1 {
  width: 108px;
}

.page-pizza-2 {
  width: 96px;
  bottom: 24%;
  right: 18%;
  opacity: 0.86;
  animation: floatX 16s ease-in-out infinite;
}

.page-pizza-3 {
  width: 100px;
  bottom: 38%;
  right: 28%;
  opacity: 0.9;
  animation: floatZ 19s ease-in-out infinite;
}

.page-floats {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatX {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(16px) rotate(3deg); }
}

@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-14px) rotate(-4deg); }
}

@keyframes floatZ {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(18px,-10px) rotate(4deg); }
  50% { transform: translate(0,24px) rotate(-5deg); }
  75% { transform: translate(-18px,-8px) rotate(3deg); }
}

.shape {
  position: absolute;
  opacity: 0.38;
  filter: blur(1px);
}

.shape-circle {
  width: 110px;
  height: 110px;
  border: 2px solid rgba(0,255,231,0.45);
  border-radius: 50%;
  top: 8%;
  left: 12%;
  animation: floatSlow 16s ease-in-out infinite;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-bottom: 58px solid rgba(255,45,159,0.45);
  top: 24%;
  left: 68%;
  animation: float 19s ease-in-out infinite;
}

.shape-x {
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  top: 55%;
  right: 18%;
  box-shadow: 0 0 14px rgba(124,77,255,0.7);
  border: 2px solid rgba(124,77,255,0.45);
  color: rgba(124,77,255,0.55);
  animation: float 14s ease-in-out infinite;
}

.shape-x::before,
.shape-x::after {
  content: '';
  position: absolute;
  inset: 50% 0 0 0;
  width: 100%;
  height: 3px;
  background: currentColor;
}

.shape-x::before {
  transform: rotate(90deg);
}

.shape-square {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,45,159,0.45);
  top: 62%;
  left: 14%;
  animation: floatSlow 18s ease-in-out infinite;
}

.shape-controller {
  width: 88px;
  height: 48px;
  border-radius: 24px 24px 14px 14px;
  border: 2px solid rgba(124,77,255,0.35);
  top: 38%;
  right: 6%;
  animation: float 20s ease-in-out infinite;
}

.shape-controller::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.shape-joystick {
  width: 10px;
  height: 10px;
  background: rgba(0,255,231,0.4);
  border-radius: 50%;
  top: 78%;
  left: 78%;
  box-shadow: 0 0 14px rgba(0,255,231,0.3);
}

@keyframes float {
  0%,100% { transform: translateY(-8px); }
  50% { transform: translateY(10px) rotate(4deg); }
}

@keyframes floatSlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(16px); }
}

/* Animated background particles */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
  will-change: transform, opacity;
}

.particle-1 {
  width: 4px;
  height: 4px;
  background: rgba(0,255,231,0.8);
  top: 20%;
  left: 15%;
  animation: particleFloat1 25s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0,255,231,0.5);
}

.particle-2 {
  width: 6px;
  height: 6px;
  background: rgba(255,45,159,0.7);
  top: 35%;
  right: 20%;
  animation: particleFloat2 30s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255,45,159,0.4);
}

.particle-3 {
  width: 3px;
  height: 3px;
  background: rgba(124,77,255,0.9);
  bottom: 25%;
  left: 25%;
  animation: particleFloat3 20s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(124,77,255,0.6);
}

.particle-4 {
  width: 5px;
  height: 5px;
  background: rgba(0,255,231,0.6);
  top: 50%;
  right: 10%;
  animation: particleFloat4 28s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0,255,231,0.4);
}

.particle-5 {
  width: 4px;
  height: 4px;
  background: rgba(255,45,159,0.8);
  bottom: 40%;
  left: 60%;
  animation: particleFloat5 22s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,45,159,0.5);
}

.particle-6 {
  width: 3px;
  height: 3px;
  background: rgba(124,77,255,0.7);
  top: 65%;
  left: 40%;
  animation: particleFloat6 26s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(124,77,255,0.5);
}

.particle-7 {
  width: 5px;
  height: 5px;
  background: rgba(0,255,231,0.7);
  bottom: 15%;
  right: 35%;
  animation: particleFloat7 24s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0,255,231,0.5);
}

.particle-8 {
  width: 4px;
  height: 4px;
  background: rgba(255,45,159,0.6);
  top: 10%;
  right: 45%;
  animation: particleFloat8 32s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,45,159,0.4);
}

@keyframes particleFloat1 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.6; }
  25% { transform: translate(20px, -15px) scale(1.2); opacity: 0.8; }
  50% { transform: translate(-10px, 25px) scale(0.8); opacity: 0.4; }
  75% { transform: translate(15px, -20px) scale(1.1); opacity: 0.7; }
}

@keyframes particleFloat2 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.7; }
  33% { transform: translate(-25px, 20px) scale(1.3); opacity: 0.9; }
  66% { transform: translate(18px, -30px) scale(0.9); opacity: 0.5; }
}

@keyframes particleFloat3 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.9; }
  50% { transform: translate(30px, 15px) scale(1.4); opacity: 0.6; }
}

@keyframes particleFloat4 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.6; }
  25% { transform: translate(-20px, -25px) scale(0.7); opacity: 0.8; }
  50% { transform: translate(25px, 20px) scale(1.2); opacity: 0.4; }
  75% { transform: translate(-15px, 30px) scale(1); opacity: 0.7; }
}

@keyframes particleFloat5 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.8; }
  40% { transform: translate(22px, -18px) scale(1.1); opacity: 0.5; }
  80% { transform: translate(-28px, 22px) scale(0.9); opacity: 0.9; }
}

@keyframes particleFloat6 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.7; }
  50% { transform: translate(-20px, 25px) scale(1.3); opacity: 0.8; }
}

@keyframes particleFloat7 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.7; }
  30% { transform: translate(25px, -20px) scale(0.8); opacity: 0.5; }
  60% { transform: translate(-15px, 30px) scale(1.2); opacity: 0.9; }
}

@keyframes particleFloat8 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.6; }
  25% { transform: translate(18px, 22px) scale(1.1); opacity: 0.8; }
  50% { transform: translate(-24px, -18px) scale(0.9); opacity: 0.4; }
  75% { transform: translate(20px, -25px) scale(1); opacity: 0.7; }
}

/* RGB Particles */
.rgb-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
  will-change: transform, opacity;
  width: 8px;
  height: 8px;
}

.rgb-red {
  background: radial-gradient(circle, #ff0000, #ff4444);
  box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000;
}

.rgb-green {
  background: radial-gradient(circle, #00ff00, #44ff44);
  box-shadow: 0 0 15px #00ff00, 0 0 30px #00ff00;
}

.rgb-blue {
  background: radial-gradient(circle, #0000ff, #4444ff);
  box-shadow: 0 0 15px #0000ff, 0 0 30px #0000ff;
}

.rgb-1 {
  top: 15%;
  left: 70%;
  animation: rgbOrbit1 18s linear infinite;
}

.rgb-2 {
  bottom: 20%;
  left: 10%;
  animation: rgbOrbit2 22s linear infinite reverse;
}

.rgb-3 {
  top: 40%;
  right: 15%;
  animation: rgbOrbit3 20s linear infinite;
}

.rgb-4 {
  bottom: 35%;
  right: 25%;
  animation: rgbOrbit4 24s linear infinite reverse;
}

.rgb-5 {
  top: 60%;
  left: 50%;
  animation: rgbOrbit5 19s linear infinite;
}

.rgb-6 {
  bottom: 50%;
  right: 50%;
  animation: rgbOrbit6 21s linear infinite reverse;
}

.rgb-cyan {
  background: radial-gradient(circle, #00f4ff, #66ffff);
  box-shadow: 0 0 15px #00f4ff, 0 0 32px #00f4ff;
}

.rgb-magenta {
  background: radial-gradient(circle, #ff00cc, #ff66dd);
  box-shadow: 0 0 15px #ff00cc, 0 0 32px #ff00cc;
}

.rgb-yellow {
  background: radial-gradient(circle, #ffff55, #fffaaa);
  box-shadow: 0 0 15px #ffff55, 0 0 28px #ffff55;
}

.rgb-7 {
  top: 12%;
  right: 40%;
  width: 10px;
  height: 10px;
  animation: rgbOrbit7 22s linear infinite;
}

.rgb-8 {
  top: 55%;
  left: 78%;
  width: 9px;
  height: 9px;
  animation: rgbOrbit8 26s linear infinite reverse;
}

.rgb-9 {
  bottom: 28%;
  left: 48%;
  width: 8px;
  height: 8px;
  animation: rgbOrbit9 20s linear infinite;
}

.rgb-10 {
  top: 18%;
  right: 10%;
  width: 7px;
  height: 7px;
  animation: rgbOrbit10 28s linear infinite;
}

.rgb-11 {
  bottom: 8%;
  left: 30%;
  width: 8px;
  height: 8px;
  animation: rgbOrbit11 24s linear infinite reverse;
}

.rgb-12 {
  top: 72%;
  right: 65%;
  width: 9px;
  height: 9px;
  animation: rgbOrbit12 27s linear infinite;
}

@keyframes rgbOrbit1 {
  0% { transform: rotate(0deg) translateX(50px) rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) translateX(50px) rotate(-180deg) scale(1.2); }
  100% { transform: rotate(360deg) translateX(50px) rotate(-360deg) scale(1); }
}

@keyframes rgbOrbit2 {
  0% { transform: rotate(0deg) translateX(60px) rotate(0deg) scale(0.8); }
  50% { transform: rotate(180deg) translateX(60px) rotate(-180deg) scale(1.3); }
  100% { transform: rotate(360deg) translateX(60px) rotate(-360deg) scale(0.8); }
}

@keyframes rgbOrbit3 {
  0% { transform: rotate(0deg) translateY(40px) rotate(0deg) scale(1.1); }
  50% { transform: rotate(180deg) translateY(40px) rotate(-180deg) scale(0.9); }
  100% { transform: rotate(360deg) translateY(40px) rotate(-360deg) scale(1.1); }
}

@keyframes rgbOrbit4 {
  0% { transform: rotate(0deg) translateY(50px) rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) translateY(50px) rotate(-180deg) scale(1.4); }
  100% { transform: rotate(360deg) translateY(50px) rotate(-360deg) scale(1); }
}

@keyframes rgbOrbit5 {
  0% { transform: rotate(0deg) translateX(45px) translateY(45px) rotate(0deg) scale(0.9); }
  50% { transform: rotate(180deg) translateX(45px) translateY(45px) rotate(-180deg) scale(1.3); }
  100% { transform: rotate(360deg) translateX(45px) translateY(45px) rotate(-360deg) scale(0.9); }
}

@keyframes rgbOrbit6 {
  0% { transform: rotate(0deg) translateX(-55px) translateY(35px) rotate(0deg) scale(1.2); }
  50% { transform: rotate(180deg) translateX(-55px) translateY(35px) rotate(-180deg) scale(0.8); }
  100% { transform: rotate(360deg) translateX(-55px) translateY(35px) rotate(-360deg) scale(1.2); }
}

@keyframes rgbOrbit7 {
  0% { transform: rotate(0deg) translateX(60px) rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) translateX(60px) rotate(-180deg) scale(1.4); }
  100% { transform: rotate(360deg) translateX(60px) rotate(-360deg) scale(1); }
}

@keyframes rgbOrbit8 {
  0% { transform: rotate(0deg) translateX(48px) translateY(18px) rotate(0deg) scale(0.9); }
  50% { transform: rotate(180deg) translateX(48px) translateY(18px) rotate(-180deg) scale(1.25); }
  100% { transform: rotate(360deg) translateX(48px) translateY(18px) rotate(-360deg) scale(0.9); }
}

@keyframes rgbOrbit9 {
  0% { transform: rotate(0deg) translateY(55px) rotate(0deg) scale(1.05); }
  50% { transform: rotate(180deg) translateY(55px) rotate(-180deg) scale(0.85); }
  100% { transform: rotate(360deg) translateY(55px) rotate(-360deg) scale(1.05); }
}

@keyframes rgbOrbit10 {
  0% { transform: rotate(0deg) translateX(35px) rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) translateX(35px) rotate(-180deg) scale(1.2); }
  100% { transform: rotate(360deg) translateX(35px) rotate(-360deg) scale(1); }
}

@keyframes rgbOrbit11 {
  0% { transform: rotate(0deg) translateX(-40px) translateY(30px) rotate(0deg) scale(1.05); }
  50% { transform: rotate(180deg) translateX(-40px) translateY(30px) rotate(-180deg) scale(1.15); }
  100% { transform: rotate(360deg) translateX(-40px) translateY(30px) rotate(-360deg) scale(1.05); }
}

@keyframes rgbOrbit12 {
  0% { transform: rotate(0deg) translateX(55px) translateY(-20px) rotate(0deg) scale(0.95); }
  50% { transform: rotate(180deg) translateX(55px) translateY(-20px) rotate(-180deg) scale(1.35); }
  100% { transform: rotate(360deg) translateX(55px) translateY(-20px) rotate(-360deg) scale(0.95); }
}

@keyframes bgShift {
  0%,100% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%;
  }
  50% {
    background-position: 100% 100%, 0% 100%, 50% 0%, 100% 100%;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(4, 8, 18, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

@media (min-width: 769px) {
  .header-inner {
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    display: flex;
    align-items: center;
  }

  .brand {
    flex: 0 0 auto;
    position: relative;
    left: auto;
    margin-right: 0.5rem;
  }

  .whatsapp-link {
    position: absolute !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    left: auto !important;
    order: unset;
    margin-left: 0;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
    min-height: auto;
  }

  .menu-toggle {
    display: none !important;
  }

  .site-nav {
    flex: 1;
    position: static !important;
    inset: auto !important;
    top: auto !important;
    margin-left: 0;
    flex-direction: row;
    gap: 1.2rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: auto;
    display: flex;
    justify-content: center;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #f8fcff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.08rem;
  padding: 0.45rem 1.3rem;
  border-radius: 3rem;
  background: rgba(1, 10, 26, 0.99);
  border: 1px solid rgba(0,255,231,0.28);
  box-shadow: 0 0 36px rgba(0,255,231,0.22);
  backdrop-filter: blur(16px);
  min-height: 56px;
  min-width: 220px;
}

.brand-logo {
  width: 88px;
  height: auto;
  max-height: 50px;
  border: 1.8px solid rgba(0,255,231,0.7);
  box-shadow: 0 0 28px rgba(0,255,231,0.26), inset 0 0 10px rgba(255,255,255,0.14);
  background: radial-gradient(circle at 30% 30%, rgba(0,255,231,0.16), transparent 38%), rgba(4,8,22,0.95);
  padding: 0.18rem;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.brand-title {
  background: linear-gradient(90deg, #4ef2ff, #8e5cff, #ff49b3);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 1rem;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(0,255,231,0.18);
}

.brand-subtitle {
  display: block;
  color: #d9f9ff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.12rem;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(0,255,231,0.1);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.whatsapp-link {
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebe4e);
  color: #fff;
  border: 1px solid rgba(37,211,102,0.4);
  box-shadow: 0 0 24px rgba(37,211,102,0.35);
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.whatsapp-link:hover {
  background: linear-gradient(135deg, #1ebe4e, #2bdc7a);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(37,211,102,0.25); }
  50% { box-shadow: 0 0 28px rgba(37,211,102,0.45); }
}

.section {
  position: relative;
  padding: 3.5rem 0;
  z-index: 1;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

@keyframes slideInLabel {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glowPulse {
  0%, 100% { 
    text-shadow: 0 0 12px rgba(0,255,231,0.4), 0 0 24px rgba(0,255,231,0.2);
  }
  50% { 
    text-shadow: 0 0 20px rgba(0,255,231,0.6), 0 0 40px rgba(0,255,231,0.3), 0 0 60px rgba(124,77,255,0.2);
  }
}

@keyframes titleDrop {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, rgba(0,255,231,0.08), rgba(124,77,255,0.08));
  border: 1px solid rgba(0,255,231,0.2);
  border-radius: 999px;
  color: #00ffdd;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  animation: slideInLabel 0.6s ease-out;
  box-shadow: 0 0 16px rgba(0,255,231,0.12);
  transition: all 0.3s ease;
}

.section-label:hover {
  background: linear-gradient(135deg, rgba(0,255,231,0.16), rgba(124,77,255,0.16));
  border-color: rgba(0,255,231,0.4);
  box-shadow: 0 0 24px rgba(0,255,231,0.18);
  transform: translateY(-2px);
}

h2 {
  font-size: clamp(2rem, 2.5vw, 3rem);
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ffffff, #d9f9ff, #00ffdd, #8e5cff, #ff49b3);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: titleDrop 0.7s ease-out 0.1s backwards, glowPulse 4s ease-in-out infinite 0.7s;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -0.05em;
  animation: titleDrop 0.8s ease-out backwards;
}

h1 span {
  color: var(--accent);
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  transition: all 0.3s ease;
}

.glass-card h3,
.pricing-card h3,
.cafe-menu-card h3,
.addon-item h4 {
  color: #ffffff;
  font-weight: 700;
}

.glass-card:hover h3,
.pricing-card:hover h3,
.cafe-menu-card:hover h3 {
  color: #00ffdd;
  text-shadow: 0 0 14px rgba(0,255,231,0.3);
  transform: translateY(-1px);
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero {
  padding: 0.7rem 0 2rem;
  min-height: calc(100vh - 58px);
  display: flex;
  align-items: flex-start;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.8rem;
  align-items: start;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00ffdd, #ff2d9f, #00ffdd);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(0,255,231,0.3);
  animation: glowPulse 3s ease-in-out infinite;
}

.hero-lines {
  position: relative;
  min-height: 24rem;
  margin: 0 0 1rem;
  overflow: hidden;
}

.hero-line {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0s linear 0.8s;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 0 48px rgba(0,255,231,0.22);
  background: linear-gradient(90deg, #73ffff, #b065ff, #ff5ab8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 100%;
  white-space: normal;
}

.hero-line.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.hero-subtitle {
  max-width: 560px;
  color: rgba(230, 242, 255, 0.92);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-shadow: 0 0 12px rgba(0,255,231,0.08);
}

.hero-tags,
.cafe-pill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-tags span,
.cafe-pill-strip span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(0,255,231,0.08);
  color: #bbf8ff;
  font-size: 0.9rem;
  border: 1px solid rgba(0,255,231,0.18);
  box-shadow: 0 0 18px rgba(0,255,231,0.08);
}

.cafe-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(340px, 0.9fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.cafe-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.cafe-copy p {
  max-width: 560px;
  line-height: 1.8;
  color: rgba(223, 234, 255, 0.92);
}

.cafe-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cafe-feature-card {
  padding: 1.3rem 1.2rem;
  border-radius: 1.8rem;
  background: rgba(3, 10, 28, 0.9);
  border: 1px solid rgba(0,255,231,0.14);
  box-shadow: 0 20px 60px rgba(0,255,231,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.cafe-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,231,0.24);
  box-shadow: 0 24px 72px rgba(0,255,231,0.12);
}

.feature-badge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,255,231,0.95), rgba(124,77,255,0.95));
  color: #051116;
}

.cafe-feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cafe-feature-card:hover h3 {
  color: #00ffdd;
  text-shadow: 0 0 12px rgba(0,255,231,0.4);
  transform: translateY(-2px);
}


.cafe-feature-card p {
  margin: 0;
  color: rgba(197, 215, 245, 0.92);
  line-height: 1.75;
}

.cafe-hero-visual {
  display: grid;
  gap: 1rem;
}

.cafe-hero-image {
  border-radius: 2.5rem;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 40px 130px rgba(255,69,158,0.14);
  border: 1px solid rgba(255,69,158,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cafe-hero-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 54px 160px rgba(255,69,158,0.18);
}

.cafe-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.5));
  pointer-events: none;
}

.cafe-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.cafe-hero-image:hover img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.cafe-hero-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(1, 1, 15, 0.78);
  border: 1px solid rgba(255,69,158,0.26);
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cafe-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cafe-thumb {
  min-height: 180px;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0,255,231,0.1);
}

.cafe-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.cafe-thumb:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.cafe-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cafe-menu-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(4, 10, 24, 0.94);
  border: 1px solid rgba(0,255,231,0.16);
  box-shadow: 0 28px 90px rgba(0,255,231,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.cafe-menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,69,158,0.26);
  box-shadow: 0 40px 120px rgba(255,69,158,0.18);
}

.menu-card-image {
  overflow: hidden;
  border-radius: 1.75rem;
  margin-bottom: 1.2rem;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.menu-card-image:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.menu-card-body {
  padding: 0 0 1rem;
}

.menu-card-body h3 {
  margin-bottom: 0.85rem;
  color: #fff;
}

.menu-card-body p {
  color: rgba(200, 220, 255, 0.92);
  line-height: 1.8;
}

.cafe-menu-card::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -32px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 69, 158, 0.12);
  filter: blur(16px);
  pointer-events: none;
}

.cafe-menu-card::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 255, 231, 0.1);
  filter: blur(14px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .cafe-intro-grid,
  .cafe-feature-strip,
  .cafe-menu-grid,
  .cafe-thumb-row {
    grid-template-columns: 1fr;
  }

  .cafe-pill-strip {
    justify-content: center;
  }
}


.gaming-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(340px, 0.95fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.gaming-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gaming-copy p {
  color: rgba(224, 236, 255, 0.94);
  line-height: 1.8;
  max-width: 520px;
}


.gaming-image-group {
  display: grid;
  gap: 1rem;
}

.gaming-image-large,
.gaming-image-thumb {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(0,0,0,0.16);
}

.gaming-image-large {
  min-height: 460px;
  box-shadow: 0 40px 120px rgba(0,255,231,0.18);
  border: 1px solid rgba(0,255,231,0.18);
}

.gaming-image-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,255,231,0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(124,77,255,0.16), transparent 28%);
  pointer-events: none;
}

.gaming-image-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.38));
  pointer-events: none;
}

.gaming-image-large img,
.gaming-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gaming-image-large:hover img,
.gaming-image-thumb:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.gaming-image-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(0,255,231,0.25);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gaming-image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gaming-image-thumb {
  min-height: 180px;
  box-shadow: 0 22px 55px rgba(0,255,231,0.1);
}

.gaming-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gaming-core-card {
  position: relative;
  padding: 1.6rem 1.5rem;
  min-height: 190px;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(4, 10, 24, 0.96), rgba(2, 6, 18, 0.92));
  border: 1px solid rgba(0,255,231,0.22);
  box-shadow: 0 26px 90px rgba(0,255,231,0.12);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gaming-core-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(0,255,231,0.95), rgba(124,77,255,0.95));
}

.gaming-core-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,231,0.32);
  box-shadow: 0 34px 100px rgba(0,255,231,0.22);
}

.core-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(0,255,231,0.95), rgba(124,77,255,0.95));
  color: #051116;
}

.gaming-core-card h3 {
  margin-bottom: 0.85rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #ffffff, #d9f9ff, #00ffdd);
  background-size: 200% auto;
  background-position: left;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gaming-core-card:hover h3 {
  background-position: right;
  transform: translateX(2px);
}


.gaming-core-card p {
  color: rgba(192, 213, 239, 0.95);
  line-height: 1.75;
}

.gaming-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gaming-stat-tile {
  position: relative;
  overflow: hidden;
  padding: 1.7rem 1.45rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(2, 8, 24, 0.88), rgba(5, 18, 44, 0.98));
  border: 1px solid rgba(0,255,231,0.18);
  box-shadow: 0 30px 90px rgba(0,255,231,0.12), inset 0 0 40px rgba(0,255,231,0.05);
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gaming-stat-tile::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -25%;
  width: 70%;
  height: 160%;
  background: radial-gradient(circle at top left, rgba(0,255,231,0.18), transparent 45%);
  transform: rotate(-20deg);
  pointer-events: none;
}

.gaming-stat-tile::after {
  content: '';
  position: absolute;
  top: 1.4rem;
  right: 1.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,255,231,0.92);
  box-shadow: 0 0 20px rgba(0,255,231,0.35);
  pointer-events: none;
}

.gaming-stat-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,231,0.3);
  box-shadow: 0 38px 110px rgba(0,255,231,0.2), inset 0 0 50px rgba(0,255,231,0.08);
}

.gaming-stat-tile strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  color: #f5ffff;
  text-shadow: 0 0 18px rgba(0,255,231,0.15);
}

.gaming-stat-tile p {
  color: rgba(205, 225, 255, 0.94);
  line-height: 1.8;
}

.gaming-stat-tile p {
  color: rgba(190, 215, 245, 0.92);
  line-height: 1.75;
}

.gaming-preview-card:hover img {
  transform: scale(1.04);
}

.gaming-preview-tag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(0,255,231,0.2);
  color: #fff;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.gaming-preview-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0,255,231,0.12), inset 0 0 80px rgba(124,77,255,0.12);
}

.gaming-grid .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gaming-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 90px rgba(0,255,231,0.18);
  border-color: rgba(124,77,255,0.24);
}

.gaming-grid .card-chip {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0,255,231,0.12);
  color: #c9f7ff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gaming-grid .card-body {
  position: relative;
}

.gaming-grid .card-body::before {
  content: '';
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, rgba(0,255,231,0.18), transparent 55%);
  pointer-events: none;
}

.gaming-grid .service-card:nth-child(1) {
  animation: popIn 0.8s ease both;
}

.gaming-grid .service-card:nth-child(2) {
  animation: popIn 0.8s ease 0.12s both;
}

.gaming-grid .service-card:nth-child(3) {
  animation: popIn 0.8s ease 0.24s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat {
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  backdrop-filter: blur(12px);
  animation: statFadeIn 1s ease both;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.hero-stat small {
  color: var(--muted);
}

@keyframes statFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-overlay {
  position: absolute;
  inset: 1.4rem 1.4rem auto auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 2;
}

.video-badge,
.video-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.34);
  color: #fff;
}

.video-badge {
  border: 1px solid rgba(255,80,80,0.35);
  background: rgba(255,20,20,0.2);
}

.video-tag {
  border: 1px solid rgba(0,255,231,0.25);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.8rem;
}

.feature-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(0,255,231,0.18), rgba(124,77,255,0.22));
  color: #fff;
  border: 1px solid rgba(124,77,255,0.25);
  box-shadow: 0 0 28px rgba(0,255,231,0.14);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, rgba(255,45,159,0.18), rgba(0,255,231,0.22));
  color: #fff;
  border: 1px solid rgba(255,45,159,0.25);
  box-shadow: 0 0 28px rgba(255,45,159,0.14);
}

.hero-media {
  display: grid;
  place-items: center;
}

.video-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.55);
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: #000;
}

.video-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0,255,231,0.18), 0 0 80px rgba(124,77,255,0.18);
}

.about {
  position: relative;
  padding: 4rem 0;
  background: radial-gradient(circle at 15% 20%, rgba(0,255,231,0.06), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(124,77,255,0.08), transparent 18%),
    radial-gradient(circle at 75% 90%, rgba(255,45,159,0.05), transparent 20%);
}

.gaming {
  position: relative;
  padding: 4rem 0 2rem;
  background: radial-gradient(circle at 10% 20%, rgba(124,77,255,0.04), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(0,255,231,0.05), transparent 18%),
    rgba(2,4,10,0.88);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.05fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease both;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-copy p {
  max-width: 660px;
  color: rgba(230, 242, 255, 0.86);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-value {
  position: relative;
  padding: 1.4rem 1.35rem;
  border-radius: 1.8rem;
  background: rgba(8, 12, 25, 0.9);
  border: 1px solid rgba(0,255,231,0.14);
  box-shadow: 0 18px 38px rgba(0,255,231,0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  animation: fadeInUp 1s ease both;
  overflow: hidden;
}

.about-value:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,231,0.35);
  box-shadow: 0 24px 70px rgba(0,255,231,0.18);
  background: rgba(8, 14, 28, 0.95);
}

.about-value::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(0,255,231,0.18), transparent 30%),
    radial-gradient(circle at right center, rgba(124,77,255,0.14), transparent 28%);
  pointer-events: none;
}

.about-value::after {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,255,231,1), rgba(124,77,255,0.75));
  opacity: 0.9;
  pointer-events: none;
}

.about-value strong {
  display: block;
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 1rem;
}

.about-value p {
  color: rgba(175, 190, 225, 0.94);
  line-height: 1.75;
  font-size: 0.95rem;
}

.about-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.about-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.divider-line {
  width: 100%;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,231,0.55), rgba(124,77,255,0.65), rgba(0,255,231,0.55), transparent);
}

.divider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,231,1), rgba(124,77,255,0.9));
  box-shadow: 0 0 22px rgba(0,255,231,0.35), 0 0 12px rgba(124,77,255,0.25);
}

.about-video,
.about-image {
  width: 100%;
  min-height: 320px;
  position: relative;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.about-video {
  min-height: 320px;
}

.about-image-tag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(0,255,231,0.22);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0,255,231,0.18);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.about-values .feature-card {
  position: relative;
  min-height: 220px;
  border-radius: 1.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  animation: fadeInUp 1s ease both;
  overflow: hidden;
  background: rgba(8, 12, 25, 0.9);
  border: 1px solid rgba(124,77,255,0.12);
}

.about-values .feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,45,159,0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0,255,231,0.12), transparent 30%);
  pointer-events: none;
}

.about-values .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0,255,231,0.16);
  border-color: rgba(0,255,231,0.24);
  background: rgba(10, 14, 30, 0.98);
}

.about-values .feature-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s ease;
}

.about-values .feature-card:hover h3 {
  color: #00ffdd;
  text-shadow: 0 0 14px rgba(0,255,231,0.3);
}


.about-values .feature-card p {
  color: rgba(170, 187, 220, 0.92);
  line-height: 1.8;
}

.about-badge {
  display: inline-flex;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(0,255,231,0.12);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(0,255,231,0.18);
}

.about-image {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.42);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,255,231,0.55), rgba(124,77,255,0.55), rgba(255,45,159,0.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.about-image {
  position: relative;
  box-shadow: 0 0 48px rgba(0,255,231,0.12), inset 0 0 28px rgba(124,77,255,0.12);
}

.about-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(124,77,255,0.35));
}


.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cafe-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
  padding: 0.5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-quick-links .btn {
  min-width: 170px;
}

.contact-map-header {
  margin-bottom: 1.25rem;
}

.contact-map-header h3 {
  margin: 0.5rem 0 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ffdd;
  text-shadow: 0 0 12px rgba(0,255,231,0.2);
  transition: all 0.3s ease;
}

.contact-map-header:hover h3 {
  text-shadow: 0 0 18px rgba(0,255,231,0.4);
  transform: translateX(2px);
}

.contact-map-description {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.location-slideshow {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 1.75rem;
  background: rgba(1, 1, 15, 0.8);
  padding: 1rem;
  border: 1px solid rgba(0,255,231,0.14);
}

.location-slideshow .slide {
  display: none;
  position: relative;
}

.location-slideshow .slide.active {
  display: block;
  animation: fadeInUp 0.7s ease both;
}

.location-slideshow img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1.2rem;
  display: block;
}

.slide-caption {
  color: var(--text);
  font-size: 0.95rem;
  text-align: center;
  padding: 0.55rem 0.5rem 0;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slide-dot.active {
  background: rgba(0,255,231,0.95);
  transform: scale(1.2);
  border-color: rgba(0,255,231,0.45);
}

.feature-card,
.service-card,
.pricing-card,
.contact-card,
.map-card,
.about-card,
.widget-card {
  padding: 1.6rem;
  border-radius: 2rem;
  background: rgba(10,12,18,0.76);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.42);
}

.glass-card {
  backdrop-filter: blur(18px);
}

.image-border {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.image-border::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,255,231,0.55), rgba(124,77,255,0.55), rgba(255,45,159,0.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.image-border-glow {
  box-shadow: 0 0 48px rgba(0,255,231,0.12), inset 0 0 28px rgba(124,77,255,0.12);
}

.image-border img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.image-border img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(124,77,255,0.35));
}

.feature-copy,
.card-body {
  padding: 1rem 0;
}

.about-intro {
  max-width: 820px;
  margin-bottom: 2rem;
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(7,9,17,0.88);
  border: 1px solid rgba(0,255,231,0.16);
  box-shadow: 0 28px 80px rgba(0,0,0,0.45);
  animation: cardRise 0.9s ease both;
}

.feature-card,
.widget-card {
  animation: cardRise 0.9s ease both;
}

.about-badge {
  display: inline-flex;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(0,255,231,0.12);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(0,255,231,0.18);
}

.about-card h3 {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  margin-top: 0;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.about-badges span {
  display: inline-flex;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.92rem;
}

.about-widgets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.widget-card {
  border: 1px solid rgba(0,255,231,0.14);
  background: rgba(0,0,0,0.5);
  padding: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,255,231,0.12);
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  from {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 48px rgba(0,255,231,0.12), inset 0 0 28px rgba(124,77,255,0.12);
  }
  to {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 0 68px rgba(0,255,231,0.18), inset 0 0 34px rgba(124,77,255,0.16);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.widget-card h4 {
  margin-bottom: 0.8rem;
  color: #fff;
}

.widget-card p {
  color: var(--muted);
}

.page-burger--small {
  width: 72px;
  top: 32%;
  left: 26%;
  opacity: 0.75;
  animation-duration: 20s;
}

.page-pizza--small {
  width: 70px;
  bottom: 22%;
  right: 24%;
  opacity: 0.78;
  animation-duration: 16s;
}

.page-burger--wide {
  width: 128px;
  top: 60%;
  left: 8%;
  opacity: 0.68;
  animation-duration: 21s;
}

.shape-controller {
  width: 120px;
  height: 64px;
  border-radius: 36px 36px 20px 20px;
  border: 2px solid rgba(0,255,231,0.28);
  background: radial-gradient(circle at 28% 30%, rgba(0,255,231,0.22), transparent 38%),
    radial-gradient(circle at 72% 38%, rgba(255,45,159,0.12), transparent 45%),
    rgba(0,255,231,0.04);
  top: 30%;
  right: 5%;
  animation: floatPath 18s ease-in-out infinite;
  box-shadow: 0 0 36px rgba(0,255,231,0.18), inset 0 0 18px rgba(124,77,255,0.14);
}

.shape-controller::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,231,0.95), rgba(0,255,231,0.32));
  box-shadow: 0 0 14px rgba(0,255,231,0.5);
  animation: pulseBtn 3.8s ease-in-out infinite alternate;
}

.shape-controller::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,159,0.96), rgba(124,77,255,0.68));
  box-shadow: 0 0 20px rgba(255,45,159,0.24), -16px 0 0 rgba(124,77,255,0.55), 0 -16px 0 rgba(0,255,231,0.35);
}

@keyframes floatX {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(16px) rotate(3deg); }
}

@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-14px) rotate(-4deg); }
}

@keyframes floatPath {
  0%,100% { transform: translate(0,0) rotate(-2deg); }
  25% { transform: translate(-12px, 10px) rotate(2deg); }
  50% { transform: translate(14px, -16px) rotate(-3deg); }
  75% { transform: translate(-8px, 12px) rotate(1deg); }
}

@keyframes pulseBtn {
  from { transform: scale(0.92); opacity: 0.92; }
  to { transform: scale(1.08); opacity: 1; }
}

.pricing-card {
  position: relative;
}

.neon-card {
  border: 1px solid rgba(124,77,255,0.25);
}

.neon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0,255,231,0.18), rgba(255,45,159,0.15));
  opacity: 0.5;
  pointer-events: none;
}

.pricing-card.highlight {
  box-shadow: 0 0 70px rgba(0,255,231,0.18);
  border-color: rgba(0,255,231,0.32);
}

.pricing-card .price {
  margin: 1.4rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-card ul li::before {
  content: '▹';
  color: var(--accent);
  margin-right: 0.75rem;
}

.pricing-addons {
  margin-top: 2.2rem;
  text-align: center;
}

.pricing-addons h3 {
  color: #fff;
  margin-bottom: 1.4rem;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.addon-item {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(10,12,18,0.76);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.42);
  transition: transform 0.3s ease;
}

.addon-item:hover {
  transform: translateY(-4px);
}

.addon-item h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.addon-item p {
  color: var(--muted);
  margin: 0;
}

.float-icon {
  position: absolute;
  width: 90px;
  opacity: 0.95;
  animation: float 8s ease-in-out infinite;
}

.burger {
  top: 8%;
  left: 12%;
  animation-delay: 0s;
}

.pizza {
  bottom: 10%;
  right: 8%;
  animation-duration: 11s;
  animation-delay: 0.5s;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: rgba(0,255,231,0.08);
  border: 1px solid rgba(0,255,231,0.2);
  color: #d9f9ff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 16px rgba(0,255,231,0.1);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0,255,231,0.2);
  border-color: rgba(0,255,231,0.3);
  box-shadow: 0 0 20px rgba(0,255,231,0.15);
  transform: translateY(-2px);
}

.gallery-item {
  position: relative;
  border-radius: 2.2rem;
  overflow: hidden;
  margin: 0;
  transition: transform 0.4s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,255,231,0.08);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,255,231,0.16);
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.gallery-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(1, 1, 15, 0.8);
  border: 1px solid rgba(0,255,231,0.2);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(0,255,231,0.1);
}

figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(1,10,26,0.92));
  color: #d9f9ff;
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 50px rgba(0,255,231,0.3);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  resize: vertical;
  font-size: 16px;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,255,231,0.18);
  border-color: rgba(0,255,231,0.3);
}

@media (max-width: 768px) {
  input,
  textarea {
    font-size: 16px;
    padding: 0.9rem 1rem;
  }

  .form-row label {
    font-size: 0.93rem;
  }
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-status {
  margin-top: 1rem;
  color: rgba(0,255,231,0.95);
  font-size: 0.95rem;
  min-height: 1.2rem;
}

.form-status.error {
  color: rgba(255,45,159,0.95);
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(0,255,231,0.05);
  border: 1px solid rgba(0,255,231,0.2);
  border-radius: 1rem;
  animation: successFadeIn 0.6s ease both;
}

.success-icon {
  font-size: 3rem;
  color: rgba(0,255,231,1);
  margin-bottom: 1rem;
  animation: checkmarkBounce 0.8s ease both;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes checkmarkBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.contact-panel {
  display: grid;
  gap: 1.6rem;
}

.contact-info {
  border: 1px solid rgba(0,255,231,0.16);
  background: rgba(0,255,231,0.05);
}

.contact-info h3 {
  margin-top: 0.5rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-info:hover h3 {
  color: #00ffdd;
  text-shadow: 0 0 12px rgba(0,255,231,0.3);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-info ul li {
  margin-bottom: 0.9rem;
}

.contact-info ul li strong {
  color: #fff;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.pricing-note {
  margin-top: 0.75rem;
  color: var(--muted);
}

.map-card {
  min-height: 420px;
  overflow: hidden;
}

.shape-o {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(0,255,231,0.28);
  top: 46%;
  left: 52%;
  animation: floatPath 15s ease-in-out infinite;
  animation-delay: 2s;
}

.shape-diamond {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 34px solid rgba(255,45,159,0.28);
  top: 18%;
  right: 30%;
  transform: rotate(45deg);
  animation: floatPath 17s ease-in-out infinite;
  animation-delay: 4s;
}

.map-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 231, 0.18);
  box-shadow: 0 0 30px rgba(0, 255, 231, 0.12), inset 0 0 1px rgba(255, 255, 255, 0.06);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 1.5rem;
  display: block;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 1.5rem;
  background: #06080f;
  color: #fff;
}

.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 10, 18, 0.82), rgba(1, 5, 15, 0.94));
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 1.75rem;
  padding: 2.5rem 0 1.5rem;
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-contact {
  background: rgba(5, 12, 25, 0.88);
  border: 1px solid rgba(0, 255, 231, 0.12);
  border-radius: 1.75rem;
  padding: 1.6rem;
  box-shadow: 0 20px 60px rgba(0, 255, 231, 0.08);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand img {
  width: 68px;
  min-width: 68px;
  border-radius: 22px;
  box-shadow: 0 0 30px rgba(0, 255, 231, 0.16);
}

.footer-brand p {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
}

.footer-brand span {
  color: #60fff7;
  display: block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links .section-label {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-links a {
  color: #d9f9ff;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #60fff7;
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-contact .section-label {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-contact p {
  margin: 1.1rem 0 1.4rem;
  color: #b8d9ea;
  line-height: 1.8;
}

.footer-contact .btn-accent {
  align-self: flex-start;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6a54ff, #00ffdd);
  color: #071118;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(0, 255, 231, 0.18);
}

.footer-contact .btn-accent:hover {
  transform: translateY(-1px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .container {
    width: min(1160px, calc(100% - 1.5rem));
  }
}

@media (max-width: 768px) {
  .hero-grid,
  .pricing-grid,
  .contact-grid,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-highlights,
  .about-values,
  .about-grid,
  .cafe-grid,
  .gallery-grid,
  .gaming-hero-grid,
  .gaming-core-grid,
  .gaming-image-stack,
  .gaming-stat-strip {
    grid-template-columns: 1fr;
  }

  .about-visual,
  .gaming-image-group {
    justify-content: center;
    grid-template-columns: 1fr;
  }

  .about-video,
  .about-image {
    min-height: 280px;
  }

  .gaming-image-tag {
    left: 1.5rem;
    right: auto;
    bottom: auto;
    top: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 0.5rem 0 1.5rem;
    min-height: auto;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-media {
    display: grid;
    justify-items: center;
  }

  .hero-media .video-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 240px;
    background: radial-gradient(circle at 30% 25%, rgba(0,255,231,0.18), transparent 24%),
      radial-gradient(circle at 72% 28%, rgba(255,45,159,0.14), transparent 18%),
      linear-gradient(180deg, rgba(3, 6, 18, 0.96), rgba(8, 11, 26, 0.98));
    border: 1px solid rgba(0, 255, 231, 0.16);
    box-shadow: 0 0 40px rgba(0, 255, 231, 0.08);
    overflow: hidden;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-video {
    display: none;
  }

  .video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 52% 35%, rgba(255,255,255,0.06), transparent 25%),
      radial-gradient(circle at 18% 70%, rgba(0,255,231,0.08), transparent 20%);
    pointer-events: none;
  }

  .video-overlay {
    position: relative;
    z-index: 1;
  }

  .eyebrow {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .hero-lines {
    min-height: 12rem;
    margin: 0 0 0.75rem;
  }

  .hero-line {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .cafe-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .brand {
    min-height: 48px;
    min-width: 180px;
    padding: 0.35rem 1rem;
    gap: 0.5rem;
    flex: 0 1 auto;
    order: 1;
  }

  .brand-logo {
    width: 72px;
    max-height: 42px;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .menu-toggle {
    order: 3;
    margin-left: auto;
  }

  .whatsapp-link {
    position: relative;
    right: auto;
    top: auto;
    order: 2;
    padding: 0.45rem 0.7rem;
    font-size: 0.75rem;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #25d366, #1ebe4e);
    color: #fff;
    border: 1px solid rgba(37,211,102,0.4);
    box-shadow: 0 0 20px rgba(37,211,102,0.3);
    margin-left: 0.5rem;
  }

  .site-nav {
    position: absolute;
    inset: auto 1rem 0 1rem;
    top: 64px;
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(2,4,10,0.96);
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 60;
    width: auto;
    display: flex;
  }

  .site-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-intro {
    margin-bottom: 1.5rem;
  }

  button,
  .btn,
  .action-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .gallery-grid {
    gap: 1.5rem;
  }

  .page-float {
    width: 80px;
    opacity: 0.6;
  }

  .page-burger {
    top: 15%;
    left: 3%;
  }

  .page-pizza {
    bottom: 10%;
    right: 5%;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
  }

  h3 {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 1.2rem);
  }

  .hero-copy h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-actions {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
  }

  .brand {
    padding: 0.3rem 0.8rem;
    gap: 0.4rem;
    min-width: 160px;
  }

  .brand-logo {
    width: 60px;
    max-height: 36px;
  }

  .brand-title {
    font-size: 0.85rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
  }

  .whatsapp-link {
    right: auto;
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    min-height: 36px;
  }

  .hero {
    padding: 0.3rem 0 0.9rem;
    min-height: auto;
  }

  .hero-lines {
    min-height: 9rem;
    margin: 0 0 0.5rem;
  }

  .hero-line {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.05;
  }

  .eyebrow {
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .hero-actions {
    gap: 0.5rem;
    margin-bottom: 0.6rem;
  }

  .hero-stats {
    gap: 1rem;
    margin-top: 0.8rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-label {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .about-video,
  .about-image {
    min-height: 240px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .pricing-card,
  .card,
  .glass-card {
    padding: 1.5rem;
  }

  .page-float {
    width: 70px;
    opacity: 0.5;
  }

  .menu-toggle {
    padding: 0.5rem;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 4px 0;
  }

  input,
  textarea,
  select {
    font-size: 16px;
    padding: 0.75rem;
  }

  .site-nav {
    top: 56px;
    inset: auto 0.8rem 0 0.8rem;
  }

  .whatsapp-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Mobile performance optimizations */
  .page-float {
    animation-duration: 40s !important;
    opacity: 0.65;
    will-change: transform, opacity;
    filter: none;
  }

  .shape {
    animation-duration: 35s !important;
    will-change: transform;
  }

  .ambient-layer::before {
    display: block;
    opacity: 0.92;
  }

  .glass-card,
  .feature-card,
  .service-card,
  .pricing-card,
  .contact-card,
  .map-card,
  .about-card,
  .widget-card {
    backdrop-filter: none;
  }

  .about-video,
  .footer-video {
    display: none;
  }

  .hero-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  .video-glow,
  .gaming-preview-glow {
    display: block;
    opacity: 0.22;
  }

  .brand,
  .whatsapp-link {
    backdrop-filter: none;
  }

  .site-nav {
    backdrop-filter: none;
  }

  /* Restore desktop-style background animation on mobile */
  body {
    animation: bgShift 60s ease-in-out infinite;
  }

  .particle {
    display: block;
    animation-duration: 38s !important;
    opacity: 0.55;
  }

  .rgb-particle {
    display: block;
    animation-duration: 42s !important;
    opacity: 0.45;
  }
}
