:root {
  --bg: #070607;
  --panel: #0b0d0f;
  --muted: #44474a;
  --accent: #18191b;
  --font-color: #ffffff;
  --accent-dark: #101012;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--font-color);
  background: linear-gradient(135deg, #0a0a0a 0%, #18191b 50%, #0a0a0a 100%);
  color: #e0e0e0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, rgba(100, 200, 255, 0.03) 0px, rgba(100, 200, 255, 0.03) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(90deg, rgba(100, 200, 255, 0.03) 0px, rgba(100, 200, 255, 0.03) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

.container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.logo {
  margin-bottom: 16px;
  animation: logoScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes logoScale {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.moon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  filter: drop-shadow(0 0 30px rgba(200, 220, 255, 0.6)) drop-shadow(0 0 60px rgba(100, 200, 255, 0.3));
}

.label {
  font-size: 12px;
  letter-spacing: 6px;
  color: #64c8ff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: slideUp 0.8s ease-out 0.1s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.headline-thin {
  font-size: 56px;
  font-weight: 300;
  color: #c0c0c0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.headline-thin.atlas-glow {
  font-size: 96px;
  letter-spacing: -2px;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 5px rgba(100, 150, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 40px rgba(100, 150, 255, 0.8), 0 0 60px rgba(100, 150, 255, 0.5);
  }
}

.headline-bold {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
}

.description {
  font-size: 14px;
  color: rgba(224, 224, 224, 0.6);
  line-height: 1.8;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease-out 0.3s both;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid rgba(100, 150, 255, 0.4);
  border-radius: 50px;
  background: rgba(80, 100, 180, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(100, 150, 255, 0.2), inset 0 0 20px rgba(100, 150, 255, 0.1);
  animation: slideUp 0.8s ease-out 0.4s both;
}



.discord-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 20px;
  animation: slideUp 0.8s ease-out 0.5s both;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #e0e0e0;
}

.check-icon {
  width: 18px;
  height: 18px;
  background: #64c8ff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #0a0a0a;
  flex-shrink: 0;
  font-weight: 700;
}

.platform-selector {
  display: flex;
  gap: 8px;
  justify-content: center;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.platform-btn {
  padding: 6px 12px;
  border: 1.5px solid rgba(100, 150, 255, 0.3);
  border-radius: 25px;
  background: rgba(80, 100, 180, 0.15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.platform-btn.active {
  border-color: rgba(100, 150, 255, 0.6);
  background: rgba(80, 100, 180, 0.3);
  box-shadow: 0 0 20px rgba(100, 150, 255, 0.4);
  color: #ffffff;
}

.platform-btn.inactive {
  opacity: 0.4;
  cursor: not-allowed;
}

.platform-icon {
  width: 14px;
  height: 14px;
}

.cta-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  margin-top: 12px;
  animation: slideUp 0.8s ease-out 0.7s both;
}

.cta-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.cta-arrow {
  font-size: 16px;
  color: rgba(100, 150, 255, 0.6);
  animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}



.pages-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.page.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-page {
  z-index: 1;
}

.features-page {
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px 15px;
  width: 100%;
  max-width: 1300px;
}

.feature-box {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 10px;
  padding: 12px;
  backdrop-filter: blur(10px);
  animation: slideUp 0.6s ease-out forwards;
}

.feature-box:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-box:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-box:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-box:nth-child(4) {
  animation-delay: 0.4s;
}



.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  padding-left: 10px;
  position: relative;
  line-height: 1.4;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(100, 150, 255, 0.6);
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.features-page .container {
  position: relative;
  width: 100%;
  padding: 0;
  gap: 0;
}

.script-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  margin-top: 20px;
  animation: slideUp 0.8s ease-out 0.8s both;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.script-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.script-cta-arrow {
    cursor: pointer;
  font-size: 16px;
  color: rgba(100, 150, 255, 0.6);
  animation: bounce-arrow 1.5s ease-in-out infinite;
}



.executors-page {
  z-index: 5;
}

.executors-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
  animation: slideUp 0.6s ease-out 0.1s both;
}

.executors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  animation: slideUp 0.6s ease-out 0.2s both;
}

.executor-box {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.executor-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.executor-box.pc::before {
  background-image: url('xeno.png');
}

.executor-box.mobile::before {
  background-image: url('delta.png');
}



.executor-label {
  font-size: 9px;
  color: rgba(100, 150, 255, 0.7);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.executor-name {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
  position: relative;
  z-index: 1;
}

.executor-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.executor-link {
  font-size: 9px;
  color: rgba(100, 150, 255, 0.8);
  text-decoration: none;
  position: relative;
  z-index: 1;
}



.executor-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 16px;
  animation: slideUp 0.6s ease-out 0.3s both;
}

.executor-note a {
  color: rgba(100, 150, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}



.problem-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 12px;
  animation: slideUp 0.6s ease-out 0.4s both;
}

.discord-button-link {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(88, 101, 242, 0.8);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  animation: slideUp 0.6s ease-out 0.5s both;
}



.key-system {
  position: relative;
}

.key-system span {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.key-message {
  display: none;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 25, 0.95);
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px;
  color: rgba(100, 150, 255, 0.8);
  white-space: nowrap;
  z-index: 100;
}

.key-message.show {
  display: block;
}

.action-buttons-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  animation: slideUp 0.6s ease-out 0.7s both;
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 36px;
  padding: 8px 12px;
  background: rgba(100, 150, 255, 0.3);
  border: 1px solid rgba(100, 150, 255, 0.5);
  border-radius: 6px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.notification-area {
  margin-top: 16px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(100, 150, 255, 0.8);
  font-weight: 500;
  animation: slideUp 0.6s ease-out 0.8s both;
}

.notification {
  padding: 8px 16px;
  background: rgba(100, 150, 255, 0.2);
  border: 1px solid rgba(100, 150, 255, 0.5);
  border-radius: 6px;
  animation: slideIn 0.3s ease-out;
}

.developers-page {
  z-index: 1;
}

.developers-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  animation: slideUp 0.6s ease-out 0.1s both;
}

.developers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  animation: slideUp 0.6s ease-out 0.2s both;
}

.developer-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.developer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  border: 2px solid rgba(100, 150, 255, 0.3);
}

.developer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.developer-role {
  font-size: 12px;
  color: rgba(100, 150, 255, 0.8);
  margin-bottom: 8px;
}

.developer-link {
  font-size: 11px;
  color: rgba(100, 150, 255, 0.8);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.developer-link:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.5);
}

.developers-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 16px;
  animation: slideUp 0.6s ease-out 0.3s both;
}

.developers-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  margin-top: 12px;
  animation: slideUp 0.8s ease-out 0.8s both;
}

.developers-cta-arrow {
  font-size: 16px;
  color: rgba(100, 150, 255, 0.6);
  animation: bounce-arrow 1.5s ease-in-out infinite;
}