* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  line-height: 1.4;
  color: #fff;
  overflow-x: hidden;
  background: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(100, 100, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(100, 100, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
  overflow: hidden;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.08), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 8s linear infinite, background-pulse 10s ease-in-out infinite alternate;
  pointer-events: auto;
}

.skip-intro-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  padding: 12px 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #64b5f6;
  border-radius: 25px;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
}

.skip-intro-button:hover {
  background-color: #64b5f6;
  color: black;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(100, 181, 246, 0.5);
}

.skip-intro-button:active {
  transform: scale(0.95);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      transparent 0%,
      transparent 8%,
      rgba(100, 150, 255, 0.8) 10%,
      rgba(100, 150, 255, 0.3) 12%,
      transparent 15%,
      transparent 100%
    ),
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 25%,
      rgba(150, 100, 255, 0.7) 27%,
      rgba(150, 100, 255, 0.2) 29%,
      transparent 32%,
      transparent 100%
    ),
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 45%,
      rgba(200, 200, 255, 0.6) 47%,
      rgba(200, 200, 255, 0.25) 49%,
      transparent 52%,
      transparent 100%
    );
  background-size: 500px 4px, 400px 3px, 350px 2px;
  background-position: -500px 15%, -400px 45%, -350px 75%;
  background-repeat: no-repeat;
  animation: shooting-stars 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shooting-stars {
  0% {
    background-position: -500px 15%, -400px 45%, -350px 75%;
  }
  100% {
    background-position: calc(100% + 250px) calc(100% - 15%), calc(100% + 200px) calc(100% - 45%), calc(100% + 175px)
      calc(100% - 75%);
  }
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.narrative-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  gap: 40px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  flex-direction: column;
}

.narrative-slide.layout-horizontal {
  flex-direction: row;
}

.narrative-slide.layout-left .narrative-image-container {
  order: 1;
}

.narrative-slide.layout-left .loading-text {
  order: 2;
  text-align: left;
}

.narrative-slide.layout-right .narrative-image-container {
  order: 2;
}

.narrative-slide.layout-right .loading-text {
  order: 1;
  text-align: right;
}

.narrative-image-container {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  min-height: unset;
}

.narrative-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.loading-text {
  text-align: center;
  color: white;
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  flex-grow: 1;
  padding: 0 20px;
  transition: none;
}

.loading-text h2 {
  font-family: "Orbitron", monospace;
  font-size: 28px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: text-glow 2s ease-in-out infinite alternate;
  transition: none;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  opacity: 0;
}

@keyframes text-glow {
  0% {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(100, 150, 255, 0.3);
  }
  100% {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(100, 150, 255, 0.6);
  }
}

@keyframes sparkle {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100px);
    opacity: 0;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100px);
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animate-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}
.animate-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}
.animate-in-fade {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-out-left {
  animation: slideOutLeft 0.6s ease-in forwards;
}
.animate-out-right {
  animation: slideOutRight 0.6s ease-in forwards;
}
.animate-out-fade {
  animation: fadeOut 0.6s ease-in forwards;
}

.enter-button {
  background: linear-gradient(45deg, #1a1a2e 0%, #16213e 100%);
  border: 3px solid #64b5f6;
  border-radius: 25px;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease, opacity 0.5s ease-in-out;
  box-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
  margin-top: 2rem;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  color: #fff;
  pointer-events: auto;
  z-index: 10001;
}

.enter-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.3), transparent);
  transition: left 0.5s;
}

.enter-button:hover::before {
  left: 100%;
}

.enter-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(100, 181, 246, 0.5);
  background: linear-gradient(45deg, #2196f3 0%, #1976d2 100%);
}

.enter-button .arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.enter-button:hover .arrow {
  transform: translateX(5px);
}

#main-content {
  transition: opacity 0.5s ease-in;
  background: #000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(100, 181, 246, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: "Orbitron", monospace;
  font-size: 28px;
  font-weight: 900;
  color: #64b5f6;
  text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  color: #90caf9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #90caf9;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  font-family: "Rajdhani", sans-serif;
}

.nav-menu a:hover {
  color: #64b5f6;
  background: rgba(100, 181, 246, 0.1);
  transform: translateY(-2px);
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(100, 181, 246, 0.1);
  border: 2px solid #64b5f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #64b5f6;
  font-weight: 900;
  font-size: 14px;
}

.social-icon:hover {
  background: rgba(100, 181, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
}

.social-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.social-icon:hover .social-logo {
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #64b5f6;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
}

.stars-background {
  position: absolute;
  top: 0;
  left: 0;
  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(100, 181, 246, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(100, 181, 246, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 4s ease-in-out infinite alternate;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  gap: 2rem;
  min-height: calc(100vh - 160px);
}

.banner-container.centered-banner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: auto;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(100, 181, 246, 0.2);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(100, 181, 246, 0.1);
  animation: banner-glow 4s ease-in-out infinite alternate;
  overflow: hidden;
}

.banner-container.centered-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
}

.banner-container.centered-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(100, 181, 246, 0.1), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(1px 1px at 130% 80%, rgba(100, 181, 246, 0.08), transparent);
  background-repeat: repeat;
  background-size: 100px 50px;
  animation: space-dust 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes space-dust {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-50px) translateY(-25px);
  }
}

@keyframes banner-glow {
  0% {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(100, 181, 246, 0.1);
    border-color: rgba(100, 181, 246, 0.2);
  }
  100% {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.9), inset 0 0 70px rgba(0, 0, 0, 0.6), 0 0 120px rgba(100, 181, 246, 0.2);
    border-color: rgba(100, 181, 246, 0.3);
  }
}

.hero-banner {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  border-radius: 15px;
  filter: brightness(0.9) contrast(1.3) saturate(0.7) drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  position: relative;
  z-index: 2;
}

.news-ticker {
  background: linear-gradient(90deg, #0d47a1 0%, #1565c0 50%, #0d47a1 100%);
  padding: 15px 0;
  overflow: hidden;
  border-top: 2px solid #64b5f6;
  border-bottom: 2px solid #64b5f6;
}

.ticker-container {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-label {
  background: #64b5f6;
  color: #000;
  padding: 8px 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-right: 20px;
  border-radius: 5px;
  flex-shrink: 0;
  font-family: "Rajdhani", sans-serif;
}

.ticker-content {
  display: flex;
  animation: scroll-ticker 30s linear infinite;
  gap: 50px;
}

.ticker-content span {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.elonverse-universe {
  background: #000;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.universe-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cosmic-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(100, 181, 246, 0.4), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(100, 181, 246, 0.5), transparent),
    radial-gradient(1px 1px at 130% 80%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 160% 30%, rgba(100, 181, 246, 0.3), transparent);
  background-repeat: repeat;
  background-size: 300px 200px;
  animation: cosmic-drift 20s linear infinite;
}

@keyframes cosmic-drift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(-50px);
  }
}

.nebula-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 20%, rgba(100, 181, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(150, 100, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
  animation: nebula-pulse 15s ease-in-out infinite alternate;
}

@keyframes nebula-pulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.elonverse-universe .container {
  position: relative;
  z-index: 2;
}

.universe-header {
  text-align: center;
  margin-bottom: 80px;
}

.universe-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.title-line-1 {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 400;
  color: #90caf9;
  text-transform: uppercase;
  letter-spacing: 8px;
  opacity: 0.8;
}

.title-line-2 {
  font-family: "Orbitron", monospace;
  font-size: 4.5rem;
  font-weight: 900;
  color: #64b5f6;
  text-transform: uppercase;
  letter-spacing: 12px;
  text-shadow: 0 0 30px rgba(100, 181, 246, 0.6), 0 0 60px rgba(100, 181, 246, 0.4);
  margin: 10px 0;
  background: linear-gradient(45deg, #64b5f6, #90caf9, #64b5f6, #42a5f5);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-shimmer 3s ease-in-out infinite alternate, cosmic-glow 4s ease-in-out infinite alternate;
}

@keyframes cosmic-glow {
  0% {
    text-shadow: 0 0 30px rgba(100, 181, 246, 0.6), 0 0 60px rgba(100, 181, 246, 0.4);
  }
  100% {
    text-shadow: 0 0 40px rgba(100, 181, 246, 0.8), 0 0 80px rgba(100, 181, 246, 0.6), 0 0 120px
      rgba(100, 181, 246, 0.3);
  }
}

@keyframes title-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.title-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #b3e5fc;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.9;
}

.universe-narrative {
  margin-bottom: 100px;
}

.narrative-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.iron-man-statement {
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 2px solid rgba(100, 181, 246, 0.3);
  border-radius: 25px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.iron-man-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(100, 181, 246, 0.05) 50%, transparent 70%);
  animation: statement-glow 4s ease-in-out infinite alternate;
}

@keyframes statement-glow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

.iron-man-statement blockquote {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #64b5f6;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
}

.statement-description {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: #b3e5fc;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.statement-description strong {
  color: #64b5f6;
  font-weight: 700;
}

.companions-constellation {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 800px;
  margin: 0 auto 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.constellation-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.grok-core {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #64b5f6;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.2) 0%, rgba(100, 181, 246, 0.05) 70%, transparent 100%);
  box-shadow: 0 0 30px rgba(100, 181, 246, 0.4), inset 0 0 30px rgba(100, 181, 246, 0.2);
  animation: core-pulse 3s ease-in-out infinite alternate;
}

@keyframes core-pulse {
  0% {
    box-shadow: 0 0 30px rgba(100, 181, 246, 0.4), inset 0 0 30px rgba(100, 181, 246, 0.2);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 50px rgba(100, 181, 246, 0.6), inset 0 0 50px rgba(100, 181, 246, 0.3);
    transform: scale(1.05);
  }
}

.core-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.core-text {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: #64b5f6;
  display: block;
  text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.core-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.7rem;
  color: #90caf9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

.companion-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(100, 181, 246, 0.1);
}

.mystery-orbit {
  width: 700px;
  height: 700px;
  border-color: rgba(102, 102, 102, 0.1);
}

.companion-node {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-300px) rotate(calc(-1 * var(--orbit-angle)));
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mystery-orbit .companion-node {
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-350px) rotate(calc(-1 * var(--orbit-angle)));
}

.companion-node:hover {
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-320px) rotate(calc(-1 * var(--orbit-angle)))
    scale(1.15);
  z-index: 2000;
}

.mystery-orbit .companion-node:hover {
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-370px) rotate(calc(-1 * var(--orbit-angle)))
    scale(1.15);
}

.node-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border: 3px solid;
  position: relative;
  transition: all 0.3s ease;
  pointer-events: none;
}

.companion-node.active .node-avatar {
  border-color: #64b5f6;
  background: rgba(100, 181, 246, 0.1);
  box-shadow: 0 0 20px rgba(100, 181, 246, 0.4);
}

.companion-node.mystery .node-avatar {
  border-color: #666;
  background: rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 15px rgba(102, 102, 102, 0.3);
  animation: mystery-flicker 2s ease-in-out infinite alternate;
}

@keyframes mystery-flicker {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.node-letter {
  font-family: "Orbitron", monospace;
  font-size: 24px;
  font-weight: 900;
  color: #64b5f6;
}

.companion-node.mystery .node-letter {
  color: #999;
}

.node-info {
  text-align: center;
  margin-bottom: 10px;
  pointer-events: none;
}

.node-name {
  font-family: "Orbitron", monospace;
  font-size: 0.9rem;
  font-weight: 900;
  color: #64b5f6;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.companion-node.mystery .node-name {
  color: #999;
}

.node-role {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.7rem;
  color: #90caf9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 600;
}

.companion-node.mystery .node-role {
  color: #777;
}

.node-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.companion-node.active .node-status {
  background: rgba(100, 181, 246, 0.2);
  color: #64b5f6;
  border: 1px solid #64b5f6;
}

.companion-node.mystery .node-status {
  background: rgba(102, 102, 102, 0.2);
  color: #999;
  border: 1px solid #666;
}

.companion-node.active .node-status:hover {
  background: rgba(100, 181, 246, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.companion-node.mystery .node-status:hover {
  background: rgba(102, 102, 102, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(102, 102, 102, 0.5);
}

.node-description {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(100, 181, 246, 0.3);
  border-radius: 10px;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.companion-node:hover .node-description {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  pointer-events: auto;
  z-index: 2000;
}

.companion-node.mystery .node-description {
  border-color: rgba(102, 102, 102, 0.3);
}

.node-description p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  color: #b3e5fc;
  line-height: 1.4;
  margin-bottom: 10px;
}

.companion-node.mystery .node-description p {
  color: #888;
}

.node-link {
  font-family: "Space Grotesk", sans-serif;
  color: #64b5f6;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  background: rgba(100, 181, 246, 0.1);
}

.node-link:hover {
  color: #90caf9;
  background: rgba(100, 181, 246, 0.2);
  text-decoration: underline;
}

.constellation-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connection-line {
  stroke-width: 2;
  opacity: 0.6;
  animation: connection-pulse 3s ease-in-out infinite alternate;
}

.connection-line.active {
  stroke-dasharray: 5, 5;
  animation: connection-pulse 3s ease-in-out infinite alternate, connection-flow 2s linear infinite;
}

.connection-line.mystery {
  stroke-dasharray: 3, 7;
  opacity: 0.3;
  animation: mystery-connection 4s ease-in-out infinite alternate;
}

@keyframes connection-pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}

@keyframes connection-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}

@keyframes mystery-connection {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.4;
  }
}

.universe-status {
  text-align: center;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.status-item {
  text-align: center;
}

.status-number {
  font-family: "Orbitron", monospace;
  font-size: 3rem;
  font-weight: 900;
  color: #64b5f6;
  text-shadow: 0 0 20px rgba(100, 181, 246, 0.5), 0 0 40px rgba(100, 181, 246, 0.3);
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 2px;
}

.status-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  color: #90caf9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.status-message {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(100, 181, 246, 0.05);
  border: 1px solid rgba(100, 181, 246, 0.2);
  border-radius: 15px;
  padding: 2rem;
}

.status-message p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: #b3e5fc;
  line-height: 1.6;
  margin: 0;
}

.status-message strong {
  color: #64b5f6;
  font-weight: 700;
}

.contract-section {
  background: #111;
  padding: 40px 0;
  border-top: 2px solid #64b5f6;
  border-bottom: 2px solid #64b5f6;
}

.contract-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(100, 181, 246, 0.05);
  border: 2px solid #64b5f6;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(100, 181, 246, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.contract-label {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contract-title {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #64b5f6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contract-address {
  font-family: monospace;
  font-size: 1rem;
  color: #fff;
  background: rgba(26, 26, 26, 0.8);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #64b5f6;
  word-break: break-all;
  max-width: 500px;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.modern-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #64b5f6;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  background: rgba(100, 181, 246, 0.1);
  color: #64b5f6;
}

.modern-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.2), transparent);
  transition: left 0.5s;
}

.modern-btn:hover::before {
  left: 100%;
}

.modern-btn:hover {
  background: rgba(100, 181, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 181, 246, 0.3);
}

.tokenomics {
  background: #000;
  padding: 80px 0;
  position: relative;
}

.tokenomics-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tokenomics-title {
  background: rgba(100, 181, 246, 0.05);
  border: 3px solid #64b5f6;
  border-radius: 20px;
  padding: 2rem;
  display: inline-block;
  position: relative;
}

.project-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: #90caf9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.marvel-title {
  font-family: "Orbitron", monospace;
  font-size: 3.5rem;
  color: #64b5f6;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(100, 181, 246, 0.5);
  margin: 0.5rem 0;
  display: block;
}

.tokenomics-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tokenomics-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid #64b5f6;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tokenomics-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(100, 181, 246, 0.2);
}

.center-card {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.1) 0%, rgba(26, 26, 26, 1) 70%);
  border: 3px solid #64b5f6;
  box-shadow: 0 0 30px rgba(100, 181, 246, 0.3);
}

.wide-card {
  grid-column: 1 / 4;
  grid-row: 3;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2rem;
}

.card-header h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.3rem;
  font-weight: 900;
  color: #64b5f6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: #64b5f6;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(100, 181, 246, 0.5);
}

.stat-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  color: #90caf9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.marvel-logo {
  margin-bottom: 2rem;
}

.logo-ring {
  width: 200px;
  height: 200px;
  border: 3px solid #64b5f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.1) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(100, 181, 246, 0.3);
  animation: rotate-logo 20s linear infinite;
}

@keyframes rotate-logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 120px;
  height: 120px;
}

.logo-inner span {
  width: 35px;
  height: 35px;
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  font-family: "Orbitron", monospace;
  animation: counter-rotate 20s linear infinite;
}

@keyframes counter-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.logo-m,
.logo-a,
.logo-r,
.logo-v {
  border-color: #64b5f6;
  color: #64b5f6;
  background: rgba(100, 181, 246, 0.1);
  box-shadow: 0 0 15px rgba(100, 181, 246, 0.3);
}

.logo-e,
.logo-l {
  border-color: #666;
  color: #999;
  background: rgba(102, 102, 102, 0.1);
  animation: counter-rotate 20s linear infinite, mystery-pulse 2s ease-in-out infinite alternate;
}

@keyframes mystery-pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.elonverse-text {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: #64b5f6;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(100, 181, 246, 0.5);
}

.contract-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid #64b5f6;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.contract-text {
  font-family: "Orbitron", monospace;
  color: #90caf9;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contract-short {
  font-family: monospace;
  color: #64b5f6;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.buy-button {
  background: #64b5f6;
  color: #000;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: "Rajdhani", monospace;
}

.buy-button:hover {
  background: #90caf9;
  box-shadow: 0 0 20px rgba(100, 181, 246, 0.5);
  transform: translateY(-2px);
}

.buy-icon {
  font-size: 1.5rem;
}

.footer {
  background: #111;
  color: white;
  padding: 2rem 0;
  text-align: center;
  border-top: 2px solid #64b5f6;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-logo {
  font-family: "Orbitron", monospace;
  font-size: 24px;
  font-weight: 900;
  color: #64b5f6;
  text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.footer-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  color: #90caf9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-text p {
  font-family: "Space Grotesk", sans-serif;
  color: #b3e5fc;
  margin: 0.5rem 0;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}

@keyframes background-pulse {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .title-line-2 {
    font-size: 3.5rem;
    letter-spacing: 8px;
  }

  .companions-constellation {
    height: 700px;
    max-width: 800px;
  }

  .companion-orbit {
    width: 500px;
    height: 500px;
  }

  .mystery-orbit {
    width: 580px;
    height: 580px;
  }

  .companion-node {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-250px) rotate(calc(-1 * var(--orbit-angle)));
  }

  .mystery-orbit .companion-node {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-290px) rotate(calc(-1 * var(--orbit-angle)));
  }

  .companion-node:hover {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-270px) rotate(calc(-1 * var(--orbit-angle)))
      scale(1.1);
  }

  .mystery-orbit .companion-node:hover {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-310px) rotate(calc(-1 * var(--orbit-angle)))
      scale(1.1);
  }

  .tokenomics-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .center-card {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .wide-card {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .contract-info {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .action-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(100, 181, 246, 0.2);
    padding: 2rem 0;
    backdrop-filter: blur(10px);
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    color: #64b5f6;
    padding: 12px 20px;
    display: block;
    border-radius: 8px;
    margin: 0 20px;
  }

  .nav-menu a:hover {
    background: rgba(100, 181, 246, 0.2);
  }

  .title-line-1 {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .title-line-2 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .title-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .iron-man-statement {
    padding: 2rem;
  }

  .iron-man-statement blockquote {
    font-size: 1.4rem;
  }

  .companions-constellation {
    height: 600px;
    max-width: 600px;
  }

  .companion-orbit {
    width: 400px;
    height: 400px;
  }

  .mystery-orbit {
    width: 460px;
    height: 460px;
  }

  .companion-node {
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-200px) rotate(calc(-1 * var(--orbit-angle)));
  }

  .mystery-orbit .companion-node {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-230px) rotate(calc(-1 * var(--orbit-angle)));
  }

  .companion-node:hover {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-220px) rotate(calc(-1 * var(--orbit-angle)))
      scale(1.1);
  }

  .mystery-orbit .companion-node:hover {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-250px) rotate(calc(-1 * var(--orbit-angle)))
      scale(1.1);
  }

  .node-avatar {
    width: 50px;
    height: 50px;
  }

  .node-letter {
    font-size: 20px;
  }

  .node-name {
    font-size: 0.8rem;
  }

  .node-role {
    font-size: 0.6rem;
  }

  .node-description {
    width: 180px;
    padding: 12px;
  }

  .status-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .status-number {
    font-size: 2.5rem;
  }

  .tokenomics-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .center-card {
    grid-column: 1;
    grid-row: 2;
  }

  .wide-card {
    grid-column: 1;
    grid-row: 4;
  }

  .marvel-title {
    font-size: 2.5rem;
  }

  .logo-ring {
    width: 150px;
    height: 150px;
  }

  .logo-inner {
    width: 90px;
    height: 90px;
  }

  .logo-inner span {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .contract-info {
    padding: 1.5rem;
  }

  .action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .modern-btn {
    justify-content: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .contract-display {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem;
  }

  .logo-text {
    font-size: 24px;
  }

  .logo-subtitle {
    font-size: 10px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .social-logo {
    width: 16px;
    height: 16px;
  }

  .title-line-1 {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .title-line-2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .title-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .iron-man-statement {
    padding: 1.5rem;
  }

  .iron-man-statement blockquote {
    font-size: 1.2rem;
  }

  .statement-description {
    font-size: 1rem;
  }

  .companions-constellation {
    height: 500px;
    max-width: 500px;
  }

  .companion-orbit {
    width: 320px;
    height: 320px;
  }

  .mystery-orbit {
    width: 370px;
    height: 370px;
  }

  .companion-node {
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-160px) rotate(calc(-1 * var(--orbit-angle)));
  }

  .mystery-orbit .companion-node {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(-185px) rotate(calc(-1 * var(--orbit-angle)));
  }

  .node-avatar {
    width: 40px;
    height: 40px;
  }

  .node-letter {
    font-size: 16px;
  }

  .node-name {
    font-size: 0.7rem;
  }

  .node-role {
    font-size: 0.5rem;
  }

  .node-description {
    width: 160px;
    padding: 10px;
  }

  .node-description p {
    font-size: 0.7rem;
  }

  .grok-core {
    width: 80px;
    height: 80px;
  }

  .core-text {
    font-size: 1rem;
  }

  .core-subtitle {
    font-size: 0.6rem;
  }

  .status-number {
    font-size: 2rem;
  }

  .status-label {
    font-size: 0.8rem;
  }

  .marvel-title {
    font-size: 2rem;
  }

  .logo-ring {
    width: 120px;
    height: 120px;
  }

  .logo-inner {
    width: 70px;
    height: 70px;
    gap: 0.2rem;
  }

  .logo-inner span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .contract-info {
    padding: 1rem;
  }

  .contract-address {
    font-size: 0.8rem;
  }

  .modern-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .tokenomics-card {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }
}
