/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Cosmic Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #1a1a2e 25%,
      #16213e 50%,
      #0f3460 75%,
      #533a7b 100%);
  background-size: 400% 400%;
  animation: cosmicShift 20s ease infinite;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(255, 119, 198, 0.3) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 40%,
      rgba(120, 198, 255, 0.2) 0%,
      transparent 50%);
  z-index: -1;
}

@keyframes cosmicShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Stars Animation */
.floating-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
}

.floating-stars::before,
.floating-stars::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 100px 200px white, 200px 100px white, 300px 300px white,
    400px 150px white, 500px 250px white, 600px 50px white, 700px 200px white,
    800px 100px white, 900px 300px white, 1000px 200px white, 1100px 100px white,
    1200px 250px white;
  animation: twinkle 4s linear infinite;
}

.floating-stars::after {
  animation-delay: 2s;
  opacity: 0.5;
  transform: scale(0.5);
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* Age Warning */
.age-warning {
  position: sticky;
  top: 0;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.age-warning-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.age-icon {
  font-size: 1.2rem;
  margin-right: 10px;
}

.age-text {
  font-weight: bold;
  font-size: 0.9rem;
  text-align: center;
  flex: 1;
}

.age-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 10px;
  transition: transform 0.2s;
}

.age-close:hover {
  transform: scale(1.2);
}

/* Navigation */
.navbar {
  background: rgba(16, 16, 16, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 50px;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Custom Logo Design */
.brand-logo {
  margin-right: 12px;
  width: 40px;
  height: 40px;
  position: relative;
}

.logo-nebula {
  width: 40px;
  height: 40px;
  position: relative;
  background: radial-gradient(circle,
      rgba(255, 107, 53, 0.8) 0%,
      rgba(83, 58, 123, 0.6) 50%,
      rgba(0, 212, 255, 0.4) 100%);
  border-radius: 50%;
  animation: logoRotate 20s linear infinite;
  overflow: hidden;
}

.nebula-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #ffffff, rgba(255, 107, 53, 0.8));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: coreGlow 3s ease-in-out infinite;
}

.nebula-spiral {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 2px solid transparent;
  border-top: 2px solid rgba(0, 212, 255, 0.6);
  border-right: 2px solid rgba(255, 107, 53, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spiralSpin 8s linear infinite;
}

.logo-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  animation: starTwinkle 2s ease-in-out infinite;
}

.star-1 {
  top: 8px;
  right: 8px;
  animation-delay: 0s;
}

.star-2 {
  bottom: 6px;
  left: 6px;
  animation-delay: 0.5s;
}

.star-3 {
  top: 12px;
  left: 4px;
  animation-delay: 1s;
}

.star-4 {
  bottom: 12px;
  right: 4px;
  animation-delay: 1.5s;
}

@keyframes logoRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes coreGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes spiralSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes starTwinkle {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.brand-name {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #00d4ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(45deg, #533a7b, #00d4ff);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}



.hero-content {
  max-width: 900px;
  z-index: 10;
  position: relative;
}

/* Hero Background Elements */
.hero-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.cosmic-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #00d4ff, transparent);
  border-radius: 50%;
  animation: cosmicFloat 8s ease-in-out infinite;
}

.cosmic-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.cosmic-particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.cosmic-particle:nth-child(3) {
  top: 30%;
  left: 70%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.cosmic-particle:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.cosmic-particle:nth-child(5) {
  top: 10%;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 5s;
}

@keyframes cosmicFloat {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-20px) translateX(10px) scale(1.2);
    opacity: 1;
  }

  50% {
    transform: translateY(-40px) translateX(-5px) scale(0.8);
    opacity: 0.6;
  }

  75% {
    transform: translateY(-10px) translateX(15px) scale(1.1);
    opacity: 0.8;
  }
}

.floating-planet {
  position: absolute;
  font-size: 3rem;
  animation: planetOrbit 15s linear infinite;
  z-index: 2;
}

.planet-1 {
  top: 15%;
  left: 15%;
  animation-duration: 20s;
}

.planet-2 {
  top: 70%;
  right: 10%;
  animation-duration: 25s;
  animation-direction: reverse;
}

.planet-3 {
  top: 40%;
  right: 20%;
  animation-duration: 18s;
  font-size: 2rem;
}

@keyframes planetOrbit {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, #ffffff, #00d4ff);
  animation: shootingStar 3s ease-out infinite;
}

.shooting-star::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transform: translateX(-50px);
}

.shooting-star {
  top: 20%;
  right: 20%;
  animation-delay: 2s;
}

.shooting-star-2 {
  top: 60%;
  left: 10%;
  animation-delay: 5s;
  animation-duration: 4s;
}

@keyframes shootingStar {
  0% {
    transform: translate(0, 0) rotate(45deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(-200px, 200px) rotate(45deg);
    opacity: 0;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #00d4ff, #533a7b);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cosmicText 4s ease infinite;
}

@keyframes cosmicText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #cccccc;
}

.hero-description {
  font-size: 1.1rem;
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.explore-icon {
  font-size: 1.2rem;
  animation: telescope 3s ease infinite;
}

@keyframes telescope {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  animation: scrollBounce 2s ease infinite;
  z-index: 10;
}

.scroll-arrow {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  animation: arrowBounce 1.5s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.rocket-icon {
  font-size: 1.3rem;
  animation: rocket 2s ease infinite;
}

@keyframes rocket {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: rgba(16, 16, 16, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Game Preview Section */
.game-preview {
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6b35, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.preview-placeholder {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-content {
  text-align: center;
}

.cosmic-symbols {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.symbol {
  font-size: 3rem;
  animation: spin 4s linear infinite;
}

.symbol:nth-child(2) {
  animation-delay: 0.5s;
}

.symbol:nth-child(3) {
  animation-delay: 1s;
}

.symbol:nth-child(4) {
  animation-delay: 1.5s;
}

.symbol:nth-child(5) {
  animation-delay: 2s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preview-text {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: bold;
}

.play-button {
  background: linear-gradient(45deg, #533a7b, #00d4ff);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
  display: inline-block;
}

.play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
}

/* About Section */
.about {
  padding: 4rem 0;
  background: rgba(16, 16, 16, 0.3);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.about-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #00d4ff;
}

.about-content p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cosmic-animation {
  position: relative;
  width: 200px;
  height: 200px;
}

.planet {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

.orbit {
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  animation: orbit 10s linear infinite;
}

.satellite {
  width: 20px;
  height: 20px;
  background: #00d4ff;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Game Container */
.game-container {
  min-height: calc(100vh - 120px);
  padding: 2rem 0;
}

.game-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 20px;
}

.game-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ff6b35, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
}

.game-frame {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  margin: 0 auto 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.loading-content {
  text-align: center;
  color: white;
}

.cosmic-loader {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.planet-loader {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.orbit-loader {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-top: 2px solid #00d4ff;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.satellite-loader {
  width: 10px;
  height: 10px;
  background: #00d4ff;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.loading-note {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.game-info {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 0.5rem 0;
  color: #cccccc;
  position: relative;
  padding-left: 1.5rem;
}

.info-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ff6b35;
}

/* Policy Content */
.policy-content {
  min-height: calc(100vh - 120px);
  padding: 2rem 0;
}

.policy-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.policy-nav-link {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.policy-nav-link:hover {
  background: linear-gradient(45deg, #533a7b, #00d4ff);
  transform: translateY(-2px);
}

.policy-section {
  margin-bottom: 4rem;
  scroll-margin-top: 150px;
}

.policy-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(45deg, #ff6b35, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.policy-content-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.policy-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #cccccc;
  font-style: italic;
}

.policy-content-block h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #00d4ff;
}

.policy-content-block p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.policy-content-block ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.policy-content-block li {
  padding: 0.5rem 0;
  color: #cccccc;
  position: relative;
  padding-left: 2rem;
}

.policy-content-block li::before {
  content: "🌟";
  position: absolute;
  left: 0;
}

/* Footer */
.footer {
  background: rgba(16, 16, 16, 0.9);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #00d4ff;
  background: rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
  text-align: center;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #cccccc;
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.age-badge,
.entertainment-badge {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.entertainment-badge {
  background: linear-gradient(45deg, #533a7b, #00d4ff);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    top: 58px;
  }

  .brand-logo {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }

  .logo-nebula {
    width: 35px;
    height: 35px;
  }

  .nebula-core {
    width: 14px;
    height: 14px;
  }

  .nebula-spiral {
    width: 28px;
    height: 28px;
  }

  .star {
    width: 2px;
    height: 2px;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    height: 300px;
    top: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button,
  .secondary-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .floating-planet {
    font-size: 2rem;
  }

  .planet-3 {
    font-size: 1.5rem;
  }

  .hero-scroll-indicator {
    bottom: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .game-frame {
    height: 400px;
    margin: 0 20px 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .age-warning-content {
    gap: 10px;
  }

  .age-text {
    font-size: 12px;
  }

  .policy-nav {
    flex-direction: column;
    align-items: center;
  }

  .policy-content-block {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }

  .logo-nebula {
    width: 30px;
    height: 30px;
  }

  .nebula-core {
    width: 12px;
    height: 12px;
  }

  .nebula-spiral {
    width: 24px;
    height: 24px;
    border-width: 1px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .hero {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .floating-planet {
    font-size: 1.5rem;
  }

  .planet-3 {
    font-size: 1rem;
  }

  .cosmic-particle {
    width: 3px;
    height: 3px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .floating-planet {
    font-size: 1.5rem;
  }

  .cosmic-particle {
    width: 2px;
    height: 2px;
  }

  .feature-card,
  .info-card,
  .policy-content-block {
    padding: 1.5rem;
  }

  .cosmic-symbols {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .symbol {
    font-size: 2rem;
  }

  .game-frame {
    height: 300px;
    width: 350px;
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(16, 16, 16, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #533a7b, #00d4ff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
}