/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a3c49;
  overflow-x: hidden;
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 1200px;
}

.nav-bubble {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo-text {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 1.2rem;
  color: #05f8fb;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #05f8fb;
  overflow: hidden;
  width: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

.contact-btn {
  background: linear-gradient(45deg, #ff006e, #8338ec);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
}

/* Parallax Hero with Geometric Shapes */
.hero-parallax {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); */
  overflow: hidden;
  background-image: url("../image/hero-image.jpg");
  background-position: center;
  background-size: cover;
}

.geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(0, 255, 136, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 110, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(136, 0, 255, 0.4), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 3s linear infinite;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.glitch-text {
  font-family: "Orbitron", monospace;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  position: relative;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  animation: glitch-1 2s infinite;
  color: #ff006e;
  z-index: -1;
}

.glitch-text::after {
  animation: glitch-2 2s infinite;
  color: #05f8fb;
  z-index: -2;
}

@keyframes glitch-1 {
  0%,
  14%,
  15%,
  49%,
  50%,
  99%,
  100% {
    transform: translate(0);
  }
  15%,
  49% {
    transform: translate(-2px, -2px);
  }
}

@keyframes glitch-2 {
  0%,
  20%,
  21%,
  62%,
  63%,
  99%,
  100% {
    transform: translate(0);
  }
  21%,
  62% {
    transform: translate(2px, 2px);
  }
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.8;
}

.neon-button {
  position: relative;
  background: transparent;
  border: 2px solid #05f8fb;
  color: #05f8fb;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.neon-button:hover {
  color: #000;
  box-shadow: 0 0 30px #05f8fb, inset 0 0 30px #05f8fb;
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #05f8fb, transparent);
  transition: left 0.5s;
}

.neon-button:hover .button-glow {
  left: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(-10px) rotate(-45deg);
  }
  60% {
    transform: translateY(-5px) rotate(-45deg);
  }
}

/* Diagonal Split Section */
.diagonal-split {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.split-left {
  flex: 1;
  background: linear-gradient(135deg, #072327, #072327);
  padding: 100px 80px;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  overflow: visible;
}

.split-right {
  flex: 1;
  position: relative;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  overflow: visible;
}

.content-wrapper {
  max-width: 700px;
  width: 100%;
}

.section-title {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  color: #05f8fb;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.text-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.9;
  overflow: visible;
}

.image-mosaic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  gap: 10px;
}
.image-mosaic img {
  width: 100%;
  object-fit: cover;
}
/* Circular Layout Section */
.circular-section {
  min-height: 100vh;
  position: relative;
  /* background: radial-gradient(circle at center, #2d1b69, #11052c); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background-image: url("../image/feature.png");
  background-position: center;
  background-size: cover;
}

.circular-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.circular-container {
  position: relative;
  width: 800px;
  height: 800px;
  max-width: 90vw;
  max-height: 90vw;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgb(38 132 167 / 80%);
  padding: 40px;
  border-radius: 50%;
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #05f8fb;
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
  overflow: visible;
}

.circular-title {
  font-family: "Orbitron", monospace;
  font-size: 1.3rem;
  color: #05f8fb;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  line-height: 1.3;
}

.center-text p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.orbital-features {
  position: relative;
  width: 100%;
  height: 100%;
}

.feature-orbit {
  position: absolute;
  width: 300px;
  border-radius: 50%;
  animation: orbit 20s linear infinite;
}

.orbit-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orbit-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: -6.67s;
}

.orbit-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -13.33s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(300px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(300px) rotate(-360deg);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: visible;
  min-height: 220px;
}

.feature-card:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: #05f8fb;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.feature-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.1rem;
  color: #05f8fb;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.7;
  overflow: visible;
}

/* Game Showcase with 3D Effect */
.game-showcase {
  min-height: 100vh;
  background: linear-gradient(45deg, #072327, #072327, #072327);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px;
}

.showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.game-container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.game-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  perspective: 1000px;
}

.frame-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #ff006e, #8338ec, #05f8fb, #ffbe0b);
  border-radius: 30px;
  z-index: -1;
  animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.game-image {
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.game-image:hover {
  transform: rotateY(10deg) rotateX(5deg);
}

.hologram-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 255, 136, 0.1) 50%,
    transparent 70%
  );
  border-radius: 20px;
  animation: hologram 3s ease-in-out infinite;
}

@keyframes hologram {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.play-button-3d {
  padding: 23px 30px;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.4s ease-in-out;
  color: white;
  font-size: 19px;
  font-weight: 600;
  background: none;
  border: 1px solid white;
}

.play-button-3d:hover {
  background-color: #6d68ca;
  transform: translateY(-5px);
}

.button-face,
.button-shadow {
  display: block;
  padding: 20px 50px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  border-radius: 15px;
}

.button-face {
  background: linear-gradient(45deg, #ff006e, #8338ec);
  transform: translateZ(10px);
}

.button-shadow {
  position: absolute;
  top: 5px;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  transform: translateZ(-10px);
}

/* Hexagonal Company Section */
.hexagon-section {
  min-height: 100vh;
  /* background: linear-gradient(135deg, #667eea, #764ba2); */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background-image: url("../image/about.jpg");
  background-position: center;
  background-size: cover;
}

.hex-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.hexagon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.hex-item {
  min-width: 350px;
  width: 30%;
  /* height: 300px; */
  position: relative;
  margin: 50px 0;
}

.hex-content {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  padding: 70px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  overflow: visible;
}

.hex-content:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: #05f8fb;
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.hex-content h2 {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  color: #05f8fb;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.hex-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
  overflow: visible;
}

/* Floating Contact Form */
.contact-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #072327, #072327, #072327);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.floating-form-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.floating-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 50px;
  min-width: 350px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float-form 6s ease-in-out infinite;
  width: 60%;
}

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

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  color: #05f8fb;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.form-decoration {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #05f8fb, transparent);
  margin: 0 auto;
}

.field-group {
  margin-bottom: 30px;
  position: relative;
}

.field-group label {
  display: block;
  color: #05f8fb;
  margin-bottom: 10px;
  font-weight: 500;
}

.field-group input,
.field-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding: 15px 0;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-bottom-color: #05f8fb;
  box-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

.field-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #05f8fb;
  transition: width 0.3s ease;
}

.field-group input:focus + .field-line,
.field-group textarea:focus + .field-line {
  width: 100%;
}

.submit-btn {
  width: 100%;
  background: none;
  padding: 15px;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid white;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background-color: #667eea;
  box-shadow: 0 10px 30px #667eea;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.submit-btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Floating Badges */
.badges-float {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #667eea, #764ba2); */
  position: relative;
  background-image: url("../image/badge.jpg");
  background-position: center;
  background-size: cover;
}

.badge-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.floating-badge {
  width: 150px;
  height: 150px;
  background: rgb(0 62 172 / 61%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: badge-float 4s ease-in-out infinite;
}

.floating-badge:nth-child(2) {
  animation-delay: 1s;
}
.floating-badge:nth-child(3) {
  animation-delay: 2s;
}
.floating-badge:nth-child(4) {
  animation-delay: 3s;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.floating-badge:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: #05f8fb;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
  transform: scale(1.1);
}

.floating-badge img {
  max-width: 120px;
  max-height: 100px;
  filter: brightness(1.2);
}

/* Futuristic Footer */
.cyber-footer {
  background: linear-gradient(135deg, #0a0a0a, #072327);
  position: relative;
  padding: 80px 20px 40px;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      45deg,
      rgba(0, 255, 136, 0.1) 25%,
      transparent 25%
    ),
    linear-gradient(-45deg, rgba(0, 255, 136, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0, 255, 136, 0.1) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0, 255, 136, 0.1) 75%);
  background-size: 50px 50px;
  background-position: 0 0, 0 25px, 25px -25px, -25px 0px;
  opacity: 0.1;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.cyber-logo {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
}

.logo-part:first-child {
  color: #05f8fb;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.logo-part:last-child {
  color: #ff006e;
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.footer-disclaimer p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 20px;
}

.newsletter-section {
  margin-bottom: 40px;
}

.newsletter-section h2 {
  font-family: "Orbitron", monospace;
  font-size: 1.3rem;
  color: #05f8fb;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.input-container {
  display: flex;
  gap: 10px;
}

.input-container input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 12px 20px;
  color: white;
  font-size: 0.9rem;
}

.input-container input:focus {
  outline: none;
  border-color: #05f8fb;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.subscribe-btn {
  background: none;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid white;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  background-color: #667eea;
  box-shadow: 0 5px 15px #667eea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #05f8fb;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #05f8fb;
}

.footer-link:hover::after {
  width: 100%;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .glitch-text {
    font-size: 2.5rem;
  }

  .split-left {
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  }

  .split-right {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }

  .circular-container {
    width: 700px;
    /* height: 700px; */
  }

  .center-content {
    width: 350px;
    /* height: 350px; */
    padding: 35px;
  }

  .hexagon-grid {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 768px) {
  .nav-bubble {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .glitch-text {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .diagonal-split {
    flex-direction: column;
  }

  .split-left,
  .split-right {
    clip-path: none;
  }

  .split-left {
    padding: 60px 30px;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .image-mosaic {
    position: relative;
    /* height: 400px; */
    padding: 20px;
  }

  .circular-container {
    width: 450px;
    /* height: 450px; */
  }

  .center-content {
    width: 280px;
    /* height: 280px; */
    padding: 25px;
  }

  .circular-title {
    font-size: 1.1rem;
  }

  .center-text p {
    font-size: 0.75rem;
  }

  .feature-orbit {
    width: 160px;
    /* height: 160px; */
  }

  .feature-card {
    padding: 18px;
    min-height: 180px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.75rem;
  }

  .hex-item {
    width: 320px;
    /* height: 280px; */
  }

  .hex-content {
    padding: 50px 35px;
  }

  .floating-form {
    padding: 30px;
    margin: 0 10px;
  }

  .badge-container {
    justify-content: center;
  }

  .floating-badge {
    width: 100px;
    height: 100px;
  }

  .floating-badge img {
    max-width: 60px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .floating-nav {
    width: 95%;
    top: 10px;
  }

  .nav-bubble {
    padding: 15px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .glitch-text {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .split-left {
    padding: 50px 25px;
  }

  .circular-container {
    width: 350px;
    /* height: 350px; */
  }

  .center-content {
    width: 230px;
    /* height: 230px; */
    padding: 20px;
  }

  .circular-title {
    font-size: 0.9rem;
  }

  .center-text p {
    font-size: 0.65rem;
  }

  .hex-item {
    width: 280px;
    /* height: 230px; */
  }

  .hex-content {
    padding: 40px 25px;
  }

  .hex-content h2 {
    font-size: 1.1rem;
  }

  .hex-content p {
    font-size: 0.85rem;
  }

  .floating-form {
    padding: 20px;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .cyber-logo {
    font-size: 1.5rem;
  }

  .input-container {
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #072327;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #05f8fb, #ff006e);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff006e, #8338ec);
}

.content {
  padding: 40px 10%;
}

.content-block {
}
.page-title {
  text-align: center;
  color: white;
}
.content-block h2 {
  color: var(--text-accent);
}
/* class="glitch-text" data-text="DISCOVER ARCTICDASH.CLICK"> */
.content-block p,
ul {
  color: rgba(255, 255, 255, 0.7);
}

.play-ground-area {
  padding: 2rem;
  background: black;
}

.play-game {
  max-width: 940px;
  margin: 0 auto;
}
a {
  text-decoration: none;
}

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
}

.age-gate-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-modal {
  max-width: 400px;
  width: 90%;
}

.age-verification-card {
  background: rgb(51, 51, 51);
  border: 1px solid;
  border-radius: 40px;
  padding: 0;
  text-align: center;
  /* box-shadow: var(--shadow-xl); */
}

.verification-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.age-verification-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.age-verification-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.verification-buttons {
  display: flex;
  gap: var(--space-md);
}

.verify-yes,
.verify-no {
  flex: 1;
  padding: 20px 15px;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.verify-yes {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.verify-yes:hover {
  /* background: #ff6b35; */
  transform: translateY(-2px);
}

.verify-no {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-primary);
}

.verify-no:hover {
  background: var(--bg-elevated);
}
