/* EXACT CSS FROM ORIGINAL FITUP MAIN HTML */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body, html {
  font-family: 'Helvetica Neue', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #000;
  overflow-x: hidden;
  color: white;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

/* Side Menu Overlay */
.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.side-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: #0a0a0a;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.side-menu.active {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.side-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

.side-menu-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.side-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.side-menu-close span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: white;
  transition: opacity 0.3s ease;
}

.side-menu-close span:first-child {
  transform: rotate(45deg);
}

.side-menu-close span:last-child {
  transform: rotate(-45deg);
}

.side-menu-close:hover span {
  opacity: 0.6;
}

.side-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.side-menu-link {
  font-size: 32px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  padding: 20px 0;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.side-menu-link:hover {
  color: #B8FF5C;
  padding-left: 20px;
}

.side-menu-footer {
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.side-menu-social {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.side-menu-social a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.side-menu-social a:hover {
  color: #B8FF5C;
}

.side-menu-email {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.side-menu-email a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.side-menu-email a:hover {
  color: #B8FF5C;
}

/* Hero Canvas */
.webgl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 1;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
  display: block;
}

#blackFadeOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  z-index: 3;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent;
  display: block;
}

.hero {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  margin: 0 !important;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

/* Hero CTA Button - Fixed position like the 3D hero text */
.hero-cta-btn {
  position: fixed;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #B8FF5C;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  z-index: 15;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(184, 255, 92, 0.3);
  overflow: hidden;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.hero-cta-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 255, 92, 0.5);
  background: #c9ff7d;
}

.hero-cta-btn:hover::before {
  left: 100%;
}

.hero-cta-btn .btn-text {
  position: relative;
  z-index: 1;
}

.hero-cta-btn .btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  font-size: 18px;
}

.hero-cta-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Pulse animation for the button */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(184, 255, 92, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(184, 255, 92, 0.6);
  }
}

.hero-cta-btn {
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-cta-btn:hover {
  animation: none;
}

/* Hide button when scrolled past hero */
.hero-cta-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

/* Logo Scroll Section */
.logo-scroll-section {
  position: relative;
  width: 100%;
  background: #000;
  padding: 60px 0;
  z-index: 10;
  overflow: hidden;
}

.logo-scroll-title {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.logo-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-scroll-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scrollLogos 40s linear infinite;
  width: fit-content;
  will-change: transform;
  padding-right: 80px; /* Match gap for seamless loop */
}

.logo-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 40px)); /* Adjust for seamless wrap */
  }
}



.logo-item {
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(100%) brightness(2);
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

.logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.logo-item.round img {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  object-fit: cover;
}

/* Services Section - Expanding Cards */
.services-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.services-title {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 60px;
}

.options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
  height: 500px;
}

.option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 10px;
  background-color: #111;
  cursor: pointer;
  border-radius: 20px;
  flex-grow: 1;
  transition: flex-grow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              min-width 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              margin 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              border-radius 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.option-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.option:nth-child(1) { --defaultBackground: #B8FF5C; }
.option:nth-child(2) { --defaultBackground: #40E0D0; }
.option:nth-child(3) { --defaultBackground: #0a0e27; }
.option:nth-child(4) { --defaultBackground: #B8FF5C; }
.option:nth-child(5) { --defaultBackground: #40E0D0; }
.option:nth-child(6) { --defaultBackground: #0a0e27; }

.option.active {
  flex-grow: 10000;
  min-width: 300px;
  margin: 0px;
  border-radius: 40px;
}

.option.active .option-image {
  transform: scale(1);
}

.option.active .shadow {
  opacity: 1;
}

.option.active .label {
  bottom: 30px;
  left: 30px;
  opacity: 1;
}

.option.active .label .info > div {
  transform: translateX(0);
  opacity: 1;
}

.option:not(.active) {
  flex-grow: 1;
  border-radius: 20px;
}

.option:not(.active) .option-image {
  transform: scale(1.1);
}

.option:not(.active) .shadow {
  opacity: 0.7;
}

.option:not(.active) .label {
  bottom: 15px;
  left: 15px;
  opacity: 1;
}

.option:not(.active) .label .info > div {
  transform: translateX(20px);
  opacity: 0;
}

.option .shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 10%,
    rgba(0, 0, 0, 0.8) 25%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  z-index: 1;
}

.option .label {
  display: flex;
  position: absolute;
  right: 0;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  max-width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.option .label .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option:hover .label .icon {
  transform: scale(1.1);
}

.option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 15px;
  color: white;
  white-space: nowrap;
  overflow: hidden;
}

.option .label .info > div {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.option .label .info .main {
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.option .label .info .sub {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition-delay: 0.05s;
}

/* Game Section */
.game-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.game-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  align-items: center;
}

.game-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.game-svg {
  width: 100%;
  max-width: 320px;
  font-family: "Rubik Mono One", monospace;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.game-svg:hover {
  transform: scale(1.02);
}

.game-svg.clicked {
  pointer-events: none;
}

.game-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.animation-stage {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.animation-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animation-word, .animation-clone {
  position: relative;
  background: #000;
  font-family: "Comfortaa", sans-serif;
  font-size: 36px;
  line-height: 40px;
  padding-top: 5px;
  box-shadow: 0px 0px 15px #000;
  color: #B8FF5C;
  font-weight: 500;
}

.game-cta-text {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.game-cta-subtext {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.game-win-message {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.5s ease;
}

.game-win-message.show {
  display: flex;
}

.game-win-title {
  font-size: 32px;
  font-weight: 700;
  color: #B8FF5C;
  margin-bottom: 15px;
}

.game-win-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.claim-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #B8FF5C;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.claim-btn:hover {
  background: #c9ff7d;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(184, 255, 92, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Us Transition Section */
.about-transition-section {
  position: relative;
  width: 100%;
  min-height: auto;
  background: #fff;
  z-index: 10;
  overflow: visible;
  margin-top: 180px;
}

.curve-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  transform: translateY(-100%);
  pointer-events: none;
  z-index: 11;
}

.curve-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 0;
  z-index: 10;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-heading {
  font-size: 72px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-heading span {
  display: block;
}

.about-heading span:last-child {
  color: #B8FF5C;
  -webkit-text-stroke: 1px #000;
}

.about-text {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

.about-text p {
  margin-bottom: 24px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  gap: 60px;
  margin-top: 50px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Social Section */
.social-section {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 60px;
}

.social-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.social-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.social-item.reverse {
  flex-direction: row-reverse;
}

.social-text-content {
  text-align: right;
  min-width: 200px;
}

.social-item.reverse .social-text-content {
  text-align: left;
}

.social-label {
  color: #1d1d1f;
  font-size: 1rem;
  margin: 0 0 10px 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-title {
  font-size: 3rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.social-title.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-title.twitter {
  color: #1DA1F2;
}

.social-handle {
  color: #1d1d1f;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 300;
}

.social-handle a {
  color: #1d1d1f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-handle a:hover {
  opacity: 0.7;
}

/* Phone Slide Styles */
.social-slide {
  position: relative;
  width: 180px;
  height: 380px;
  padding: 0;
  border-radius: 35px;
  overflow: hidden;
  border: 4px solid #2a2a2a;
  outline: 1px solid #444;
  background-color: #000;
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.15);
  display: grid;
  flex-shrink: 0;
}

.social-slide:after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 30%;
  background-color: #f7f7f7;
  width: 40%;
  height: 4px;
  border-radius: 10px;
}

.social-slide-items {
  position: relative;
  grid-area: 1/1;
  overflow: hidden;
  border: 6px solid #000;
  border-radius: 30px;
}

.social-slide-items img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.social-slide-items img.active {
  position: relative;
  opacity: 1;
  pointer-events: initial;
}

.social-slide-nav {
  grid-area: 1/1;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
}

.social-slide-nav button {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
  cursor: pointer;
  border: none;
  background: transparent;
}

.social-slide-thumb {
  display: flex;
  grid-column: 1/3;
  padding: 0 15px;
}

.social-slide-thumb > span {
  flex: 1;
  display: block;
  height: 3px;
  background: rgba(175, 175, 175, 0.5);
  margin: 3px;
  margin-top: 20px;
  border-radius: 3px;
  overflow: hidden;
}

.social-slide-thumb > span.done:after {
  content: "";
  display: block;
  height: inherit;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}

.social-slide-thumb > span.active:after {
  content: "";
  display: block;
  height: inherit;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  transform: translateX(-100%);
  animation: socialThumb 5s forwards linear;
}

@keyframes socialThumb {
  to {
    transform: initial;
  }
}

/* FAQ Section */
.faq-section {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  z-index: 10;
  padding: 100px 48px;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
}

.faq-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
}

.faq-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item-header {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: start;
  gap: 20px;
}

.faq-number {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 5px;
}

.faq-question {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: rgba(255, 255, 255, 0.8);
}

.faq-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 20px;
}

.faq-answer-text {
  grid-column: 2;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  background: #000;
  z-index: 10;
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-description {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #B8FF5C;
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #B8FF5C;
}

/* Top Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  padding: 32px 48px;
  z-index: 999;
  pointer-events: none;
  font-family: 'Helvetica Neue', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.top-nav > * {
  pointer-events: auto;
}

.nav-left {
  grid-column: 1;
  justify-self: start;
}

.nav-logo {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-center-left {
  grid-column: 2;
  justify-self: start;
  padding-left: 60px;
}

.nav-menu-item {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
  line-height: 1;
}

.nav-menu-item:hover {
  opacity: 0.6;
}

.nav-center {
  grid-column: 3;
  justify-self: center;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-stripe-cluster {
  display: flex;
  gap: 1px;
  align-items: center;
  height: 32px;
  justify-content: center;
}

.stripe {
  width: 0.5px;
  height: 100%;
  background: white;
  opacity: 0.2;
}

.stripe:nth-child(1) { opacity: 0.15; height: 30%; }
.stripe:nth-child(2) { opacity: 0.18; height: 40%; }
.stripe:nth-child(3) { opacity: 0.22; height: 50%; }
.stripe:nth-child(4) { opacity: 0.28; height: 60%; }
.stripe:nth-child(5) { opacity: 0.35; height: 70%; }
.stripe:nth-child(6) { opacity: 0.42; height: 80%; }
.stripe:nth-child(7) { opacity: 0.5; height: 90%; }
.stripe:nth-child(8) { opacity: 0.6; height: 100%; }
.stripe:nth-child(9) { opacity: 0.65; height: 100%; }
.stripe:nth-child(10) { opacity: 0.7; height: 100%; }
.stripe:nth-child(11) { opacity: 0.75; height: 100%; }
.stripe:nth-child(12) { opacity: 0.8; height: 100%; }
.stripe:nth-child(13) { opacity: 0.85; height: 100%; }
.stripe:nth-child(14) { opacity: 0.8; height: 100%; }
.stripe:nth-child(15) { opacity: 0.75; height: 100%; }
.stripe:nth-child(16) { opacity: 0.7; height: 100%; }
.stripe:nth-child(17) { opacity: 0.65; height: 100%; }
.stripe:nth-child(18) { opacity: 0.6; height: 100%; }
.stripe:nth-child(19) { opacity: 0.5; height: 90%; }
.stripe:nth-child(20) { opacity: 0.42; height: 80%; }
.stripe:nth-child(21) { opacity: 0.35; height: 70%; }
.stripe:nth-child(22) { opacity: 0.28; height: 60%; }
.stripe:nth-child(23) { opacity: 0.22; height: 50%; }
.stripe:nth-child(24) { opacity: 0.18; height: 40%; }
.stripe:nth-child(25) { opacity: 0.15; height: 30%; }
.stripe:nth-child(26) { opacity: 0.12; height: 25%; }
.stripe:nth-child(27) { opacity: 0.1; height: 20%; }
.stripe:nth-child(28) { opacity: 0.08; height: 15%; }
.stripe:nth-child(29) { opacity: 0.06; height: 12%; }
.stripe:nth-child(30) { opacity: 0.05; height: 10%; }

.nav-center-right {
  grid-column: 4;
  justify-self: end;
  padding-right: 60px;
}

.nav-lang-toggle {
  display: none; /* Language toggle removed */
}

.lang-active,
.lang-separator,
.lang-inactive {
  display: none; /* Language toggle removed */
}

.lang-inactive:hover {
  opacity: 0.7;
}

.nav-right {
  grid-column: 5;
  justify-self: end;
}

.nav-menu-btn {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
}

.menu-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}

.menu-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-line {
  position: absolute;
  background: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-line-h {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-line-v {
  width: 1px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-menu-btn:hover .menu-line {
  opacity: 0.7;
}

.top-nav.scrolled .nav-logo span,
.top-nav.scrolled .nav-menu-item,
.top-nav.scrolled .nav-lang-toggle,
.top-nav.scrolled .menu-text {
  color: white;
}

.top-nav.scrolled .menu-line,
.top-nav.scrolled .stripe {
  background: white;
}

/* ========================================
   HERO SECTION MOBILE RESPONSIVENESS
   ======================================== */
/* Hero styles are defined above - this section contains responsive overrides only */

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media screen and (max-width: 1200px) {
  .options {
    height: 450px;
  }
  /* Keep all 6 service cards visible - removed hiding */
  
  .logo-scroll-section {
    margin-top: 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .top-nav {
    padding: 28px 32px;
    grid-template-columns: auto 1fr auto;
  }
  
  .nav-center-left {
    display: none;
  }
  
  .nav-center {
    display: none;
  }
  
  .nav-center-right {
    grid-column: 2;
    justify-self: end;
    padding-right: 0;
  }

  .logo-scroll-track {
    gap: 50px;
  }

  .logo-item {
    height: 40px;
  }

  .logo-item.round img {
    height: 40px;
    width: 40px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-heading {
    font-size: 56px;
  }

  .curve-container {
    height: 200px;
  }
  
  .social-wrapper {
    gap: 40px;
  }
  
  .social-item {
    gap: 25px;
  }
  
  .social-title {
    font-size: 2.5rem;
  }
  
  .social-slide {
    width: 160px;
    height: 340px;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-title {
    font-size: 42px;
  }

  .faq-section {
    padding: 80px 32px;
  }
}

@media screen and (max-width: 900px) {
  .options {
    height: 400px;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* Keep all service cards visible */

  .game-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .game-right {
    order: -1;
  }

  .animation-stage {
    height: 150px;
    margin-bottom: 30px;
  }

  .animation-word, .animation-clone {
    font-size: 28px;
    line-height: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .about-content {
    padding: 80px 24px 60px;
  }

  .about-heading {
    font-size: 42px;
  }

  .about-text {
    font-size: 16px;
  }

  .about-stats {
    flex-direction: column;
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .curve-container {
    height: 150px;
  }
  
  .social-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .social-item,
  .social-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .social-text-content,
  .social-item.reverse .social-text-content {
    text-align: center;
    min-width: auto;
  }

  .social-title {
    font-size: 2.5rem;
  }

  .social-handle {
    font-size: 1.1rem;
  }

  .social-slide {
    width: 170px;
    height: 360px;
  }
  
  .faq-item-header {
    grid-template-columns: 50px 1fr 35px;
    gap: 15px;
  }

  .faq-answer {
    grid-template-columns: 50px 1fr 35px;
    gap: 15px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-section {
    padding: 60px 20px;
  }
}

@media screen and (max-width: 720px) {
  .top-nav {
    padding: 24px 28px;
  }
  
  .nav-logo {
    font-size: 12px;
  }

  .nav-logo-img {
    width: 28px;
    height: 28px;
  }
  
  .nav-lang-toggle {
    font-size: 12px;
  }
  
  .menu-text {
    font-size: 12px;
  }
  
  .menu-icon {
    width: 18px;
    height: 18px;
  }
  
  .menu-line-h {
    width: 14px;
  }
  
  .menu-line-v {
    height: 14px;
  }

  .logo-scroll-section {
    padding: 40px 0;
  }

  .logo-scroll-title {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .logo-scroll-track {
    gap: 40px;
  }

  .logo-item {
    height: 35px;
  }

  .logo-item.round img {
    height: 35px;
    width: 35px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-title {
    font-size: 12px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 700px) {
  /* Services - switch to vertical layout on mobile */
  .options {
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 0 16px;
  }
  
  .option {
    min-width: 100% !important;
    width: 100%;
    height: 200px;
    min-height: 200px;
    margin: 0;
    flex-grow: 0 !important;
  }
  
  .option.active {
    flex-grow: 0 !important;
    min-width: 100% !important;
    height: 280px;
  }
  
  .option .label .info .main {
    font-size: 1.1rem;
  }
  .option .label .info .sub {
    font-size: 0.85rem;
  }
  .option .label .icon {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
  
  .option .label {
    bottom: 15px !important;
    left: 15px !important;
    opacity: 1 !important;
  }
  
  .option .label .info > div {
    transform: translateX(0) !important;
    opacity: 1 !important;
  }

  .game-cta-text {
    font-size: 20px;
  }

  .game-svg {
    max-width: 280px;
  }

  .side-menu-link {
    font-size: 24px;
    padding: 16px 0;
  }

  .footer {
    padding: 60px 20px 30px;
  }
}

@media screen and (max-width: 500px) {
  .options {
    height: auto;
    min-width: auto;
    gap: 10px;
  }
  
  .option {
    height: 180px;
    min-height: 180px;
    border-radius: 16px;
  }
  
  .option.active {
    border-radius: 20px;
    height: 240px;
  }
  
  .option.active .label {
    bottom: 15px;
    left: 15px;
  }

  .animation-word, .animation-clone {
    font-size: 22px;
    line-height: 26px;
  }

  .game-win-title {
    font-size: 24px;
  }
  
  .about-heading {
    font-size: 32px;
  }

  .curve-container {
    height: 120px;
  }
  
  .social-title {
    font-size: 2rem;
  }

  .social-slide {
    width: 150px;
    height: 320px;
    border-radius: 30px;
  }

  .social-section {
    padding: 30px 20px 50px;
  }
  
  .faq-item-header {
    grid-template-columns: 40px 1fr 30px;
    gap: 10px;
  }

  .faq-answer {
    grid-template-columns: 40px 1fr 30px;
    gap: 10px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-number {
    font-size: 12px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
  }

  .faq-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* ========================================
   HERO SECTION MOBILE SPECIFIC STYLES
   ======================================== */

/* Tablet and below */
@media screen and (max-width: 1024px) {
  .webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    height: 85dvh;
    margin: 0;
    padding: 0;
  }
  
  .hero-section {
    min-height: 85vh;
    min-height: 85dvh;
    margin: 0;
    padding: 0;
  }
  
  .hero {
    height: 85vh;
    height: 85dvh;
    padding: 0 16px;
    margin: 0;
  }
  
  .hero-cta-btn {
    bottom: 12%;
    padding: 14px 28px;
    font-size: 13px;
  }
  
  /* Remove gaps between sections */
  .logo-scroll-section {
    margin-top: 0;
    padding-top: 40px;
  }
}

/* Mobile landscape and portrait */
@media screen and (max-width: 768px) {
  .webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75vh;
    height: 75dvh;
    margin: 0;
    padding: 0;
  }
  
  .hero-section {
    min-height: 75vh;
    min-height: 75dvh;
    margin: 0;
    padding: 0;
  }
  
  .hero {
    height: 75vh;
    height: 75dvh;
    padding: 0 12px;
    margin: 0;
  }
  
  /* Remove gaps between sections */
  .logo-scroll-section {
    padding: 30px 0;
    margin-top: 0;
  }
  
  .services-section {
    padding: 40px 0;
    min-height: auto;
    margin-top: 0;
  }
  
  .game-section {
    padding: 40px 20px;
    min-height: auto;
  }
  
  .about-transition-section {
    margin-top: 80px;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  .webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    height: 65dvh;
    margin: 0;
    padding: 0;
  }
  
  .hero-section {
    min-height: 65vh;
    min-height: 65dvh;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  .hero {
    height: 65vh;
    height: 65dvh;
    padding: 0 10px;
    margin: 0;
  }
  
  .hero-cta-btn {
    bottom: 10%;
    padding: 12px 24px;
    font-size: 12px;
    gap: 8px;
  }
  
  .hero-cta-btn .btn-arrow {
    font-size: 14px;
  }
  
  /* Remove gaps between sections */
  .logo-scroll-section {
    padding: 25px 0;
    margin-top: 0;
  }
  
  .services-section {
    padding: 30px 0;
    min-height: auto;
    margin-top: 0;
  }
  
  .services-title {
    margin-bottom: 20px;
  }
  
  .game-section {
    padding: 30px 16px;
    min-height: auto;
  }
  
  .about-transition-section {
    margin-top: 60px;
  }
  
  .curve-container {
    height: 80px;
  }
  
  /* Adjust side menu for small screens */
  .side-menu {
    width: 100%;
    max-width: 100vw;
  }
  
  .side-menu-header {
    padding: 20px 24px;
  }
  
  .side-menu-nav {
    padding: 24px;
  }
  
  .side-menu-link {
    font-size: 20px;
    padding: 14px 0;
  }
  
  .side-menu-footer {
    padding: 24px;
  }
}

/* Very small screens (iPhone SE, etc) */
@media screen and (max-width: 375px) {
  .webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55vh;
    height: 55dvh;
    margin: 0;
    padding: 0;
  }
  
  .hero-section {
    min-height: 55vh;
    min-height: 55dvh;
    margin: 0;
    padding: 0;
  }
  
  .hero {
    height: 55vh;
    height: 55dvh;
    margin: 0;
    padding: 0 10px;
  }
  
  .top-nav {
    padding: 16px 14px;
  }
  
  .nav-logo {
    font-size: 10px;
  }
  
  .nav-logo-img {
    width: 24px;
    height: 24px;
  }
  
  .nav-lang-toggle {
    font-size: 10px;
  }
  
  .menu-text {
    font-size: 10px;
  }
  
  .nav-right {
    justify-self: end;
  }
  
  .side-menu-link {
    font-size: 18px;
    padding: 12px 0;
  }
  
  /* Smaller services on very small screens */
  .option {
    height: 160px;
    min-height: 160px;
  }
  
  .option.active {
    height: 200px;
  }
}

/* Landscape orientation specific fixes */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .webgl {
    height: 100vh;
    height: 100dvh;
  }
  
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
  }
  
  .hero {
    height: 100vh;
    height: 100dvh;
  }
  
  /* Compact side menu for landscape */
  .side-menu-nav {
    padding: 16px 24px;
  }
  
  .side-menu-link {
    font-size: 18px;
    padding: 10px 0;
  }
}

/* ==================== LET'S TALK FLOATING WIDGET ==================== */
.lets-talk-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: 'Helvetica Neue', system-ui, -apple-system, sans-serif;
}

.lets-talk-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #B8FF5C;
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 255, 92, 0.4);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.lets-talk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(184, 255, 92, 0.5);
}

.lets-talk-btn svg {
  width: 20px;
  height: 20px;
  stroke: #000;
}

.lets-talk-btn.active {
  padding: 14px 20px;
  border-radius: 50%;
}

.lets-talk-btn.active span {
  display: none;
}

.lets-talk-btn.active .chat-icon {
  display: none;
}

.lets-talk-btn.active .close-icon {
  display: block !important;
}

/* Dialog Box */
.lets-talk-dialog {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.lets-talk-dialog.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dialog-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dialog-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.dialog-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.dialog-form {
  padding: 20px 24px 24px;
}

.dialog-field {
  margin-bottom: 14px;
}

.dialog-field input,
.dialog-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.dialog-field input::placeholder,
.dialog-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.dialog-field input:focus,
.dialog-field textarea:focus {
  outline: none;
  border-color: #B8FF5C;
  background: rgba(184, 255, 92, 0.05);
}

.dialog-field textarea {
  resize: none;
}

.dialog-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #B8FF5C;
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
}

.dialog-submit:hover {
  background: #c9ff7d;
  transform: translateY(-1px);
}

.dialog-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.dialog-submit svg {
  width: 18px;
  height: 18px;
  stroke: #000;
}

/* Success State */
.dialog-success {
  padding: 40px 24px;
  text-align: center;
}

.dialog-success .success-icon {
  width: 60px;
  height: 60px;
  background: #B8FF5C;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.dialog-success h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.dialog-success p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .lets-talk-widget {
    bottom: 16px;
    right: 16px;
  }
  
  .lets-talk-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .lets-talk-btn span {
    display: none;
  }
  
  .lets-talk-btn {
    padding: 14px;
    border-radius: 50%;
  }
  
  .lets-talk-dialog {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 65px;
  }
}
