* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
  color: #c9d1d9;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Mono', monospace;
}

.age-gate {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(27, 39, 53, 0.98) 0%, rgba(9, 10, 15, 0.98) 100%);
  backdrop-filter: blur(10px);
}

.age-gate.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate-container {
  background: linear-gradient(135deg, #1a1f2e, #0f1419);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  border: 2px solid #58a6ff;
  box-shadow: 0 8px 32px rgba(88, 166, 255, 0.3);
}

.star-logo {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.star {
  font-size: 2.5rem;
  color: #ffd700;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.logo-letter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #58a6ff;
  font-family: 'Space Mono', monospace;
}

.gate-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #58a6ff;
  font-weight: 700;
}

.gate-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #8b949e;
}

.gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gate-btn {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  border-radius: 8px;
}

.gate-btn.primary {
  background: #58a6ff;
  color: #0d1117;
}

.gate-btn.primary:hover {
  background: #79c0ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 166, 255, 0.4);
}

.gate-btn.secondary {
  background: transparent;
  color: #8b949e;
  border: 2px solid #30363d;
}

.gate-btn.secondary:hover {
  border-color: #484f58;
  color: #c9d1d9;
}

.site-header {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #30363d;
}

.main-navigation {
  max-width: 100%;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-star {
  font-size: 1.75rem;
  color: #ffd700;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #58a6ff;
  font-family: 'Space Mono', monospace;
  letter-spacing: 2px;
}

.menu-button {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-bar {
  width: 28px;
  height: 3px;
  background: #58a6ff;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.menu-link {
  color: #8b949e;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.menu-link:hover,
.menu-link.current {
  color: #58a6ff;
  background: rgba(88, 166, 255, 0.1);
}

@media (max-width: 768px) {
  .main-navigation {
    padding: 1rem 1.5rem;
  }

  .menu-button {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: rgba(13, 17, 23, 0.98);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 5rem;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-link {
    display: block;
    padding: 1.5rem;
    width: 100%;
    font-size: 1.1rem;
  }
}

.main-container {
  width: 100%;
}

.stellar-hero {
  padding: 8rem 2.5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(88, 166, 255, 0.05) 0%, transparent 100%);
}

.star-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.cosmic-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #58a6ff;
  font-weight: 700;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.35rem;
  color: #8b949e;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.launch-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #58a6ff;
  color: #0d1117;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.launch-button:hover {
  background: #79c0ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(88, 166, 255, 0.4);
}

.section-wrap {
  max-width: 100%;
  padding: 0 2.5rem;
}

.mission-section {
  padding: 6rem 0;
  background: rgba(22, 27, 34, 0.5);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #58a6ff;
  font-weight: 700;
}

.mission-text {
  font-size: 1.15rem;
  color: #8b949e;
  margin-bottom: 1.5rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.values-section {
  padding: 6rem 0;
  background: rgba(13, 17, 23, 0.8);
}

.values-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-star {
  background: linear-gradient(135deg, #1a1f2e, #0f1419);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #30363d;
  transition: all 0.3s ease;
}

.value-star:hover {
  border-color: #58a6ff;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(88, 166, 255, 0.2);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.value-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #c9d1d9;
  text-align: center;
}

.value-text {
  color: #8b949e;
  line-height: 1.8;
  text-align: center;
}

.gameplay-section {
  padding: 6rem 0;
  background: rgba(22, 27, 34, 0.5);
}

.gameplay-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #8b949e;
  margin-bottom: 3rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.game-container {
  max-width: 1350px;
  margin: 0 auto;
  background: #0d1117;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #30363d;
}

.game-iframe {
  width: 100%;
  height: 750px;
  border: none;
  border-radius: 8px;
}

.support-section {
  padding: 6rem 0;
  background: rgba(13, 17, 23, 0.8);
  text-align: center;
}

.support-text {
  font-size: 1.15rem;
  color: #8b949e;
  max-width: 950px;
  margin: 0 auto 3rem auto;
}

.support-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #1a1f2e, #0f1419);
  border: 1px solid #30363d;
  border-radius: 8px;
  color: #8b949e;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.support-link:hover {
  border-color: #58a6ff;
  color: #c9d1d9;
  transform: translateY(-2px);
}

.support-icon {
  font-size: 1.75rem;
}

.site-footer {
  background: #0d1117;
  border-top: 1px solid #30363d;
  padding: 4rem 2.5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #58a6ff;
  font-family: 'Space Mono', monospace;
  letter-spacing: 2px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-title {
  font-size: 1.1rem;
  color: #c9d1d9;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-link {
  color: #8b949e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #58a6ff;
}

.footer-notice {
  color: #6e7681;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  color: #484f58;
  font-size: 0.9rem;
}

.page-banner {
  padding: 5rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(88, 166, 255, 0.05) 0%, transparent 100%);
}

.banner-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #58a6ff;
  font-weight: 700;
}

.banner-text {
  font-size: 1.25rem;
  color: #8b949e;
  max-width: 850px;
  margin: 0 auto;
}

.legal-updated {
  color: #6e7681;
  font-size: 1rem;
}

.play-area {
  padding: 5rem 0;
  background: rgba(22, 27, 34, 0.5);
}

.game-description {
  max-width: 1350px;
  margin: 3rem auto 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, #1a1f2e, #0f1419);
  border-radius: 12px;
  border: 1px solid #30363d;
}

.desc-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #c9d1d9;
  text-align: center;
}

.desc-text {
  color: #8b949e;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center;
}

.game-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.highlight-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.highlight-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #c9d1d9;
}

.highlight-info {
  color: #8b949e;
  line-height: 1.7;
}

.alert-section {
  padding: 5rem 0;
  background: rgba(13, 17, 23, 0.8);
}

.alert-container {
  max-width: 950px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1f2e, #0f1419);
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid #58a6ff;
}

.alert-title {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #58a6ff;
}

.alert-list {
  list-style: none;
  padding: 0;
}

.alert-list li {
  color: #8b949e;
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
}

.alert-list li:before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 1.3rem;
}

.document-section {
  padding: 5rem 0;
  background: rgba(22, 27, 34, 0.5);
}

.legal-doc {
  max-width: 950px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1f2e, #0f1419);
  padding: 3.5rem;
  border-radius: 12px;
  border: 1px solid #30363d;
}

.legal-doc h2 {
  font-size: 1.9rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #58a6ff;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p {
  color: #8b949e;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.legal-doc ul {
  list-style: disc;
  margin-left: 2.25rem;
  margin-bottom: 1.25rem;
  color: #8b949e;
}

.legal-doc li {
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.legal-doc strong {
  color: #c9d1d9;
}

.legal-doc a {
  color: #58a6ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-doc a:hover {
  color: #79c0ff;
}

@media (max-width: 768px) {
  .cosmic-title {
    font-size: 2.75rem;
  }

  .hero-description {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .game-iframe {
    height: 500px;
  }

  .values-constellation {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .legal-doc,
  .alert-container {
    padding: 2rem 1.5rem;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .section-wrap {
    padding: 0 1.5rem;
  }
}
