* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Comic Sans MS", cursive, fantasy, sans-serif;
  background: linear-gradient(135deg, #1e1b4b 0%, #1e3a8a 50%, #312e81 100%);
  min-height: 100vh;
  color: white;
  overflow-x: hidden;
  position: relative;
}

/* Background Pattern */
.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: radial-gradient(
    circle at 30px 30px,
    rgba(255, 255, 255, 0.1) 2px,
    transparent 2px
  );
  background-size: 60px 60px;
  z-index: -1;
}

/* Falling Stars Animation */
.falling-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  color: #fbbf24;
  font-size: 20px;
  animation: fall linear infinite;
  opacity: 0.8;
}

@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

main {
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.lumo-logo {
  position: relative;
  margin-bottom: 2rem;
}

.logo-circle-image {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-circle-image:hover {
  transform: scale(1.05);
}
.logo-glow {
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
  border-radius: 50%;
  filter: blur(2rem);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

.main-title {
  font-size: clamp(3.75rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #c4b5fd;
  margin-bottom: 2rem;
  font-weight: 300;
}

.description {
  max-width: 64rem;
  margin: 0 auto 3rem;
}

.description p {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.highlight {
  color: #fbbf24;
  font-weight: 600;
}

/* Video Section */
.video-container {
  margin-bottom: 4rem;
}

.video-wrapper {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-player {
  width: 480px;
  height: 360px;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.video-player:hover {
  transform: scale(1.02);
}
/* Source Section */
.source {
  padding: 5rem 2rem;
  text-align: center;
}

.source-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
}

.source-link {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: bold;
  font-size: 1.125rem;
  min-width: 150px;
  justify-content: center;
}

.source-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.05);
  color: #fbbf24;
}

/* Tokenomics Section */
.tokenomics {
  padding: 5rem 2rem;
}

.section-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto 4rem;
}

.tokenomics-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.tokenomics-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tokenomics-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.card-value {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.card-value.green {
  color: #10b981;
}
.card-value.red {
  color: #ef4444;
}
.card-value.blue {
  color: #3b82f6;
}
.card-value:not(.green):not(.red):not(.blue) {
  color: #fbbf24;
}

.card-description {
  color: #c4b5fd;
}

/* Token Info */
.token-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.token-info h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.token-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.token-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
}

.token-row span:first-child {
  color: #c4b5fd;
}

.token-row span:last-child {
  font-weight: 600;
}

/* Socials Section */
.socials {
  padding: 5rem 2rem;
  text-align: center;
}

.png-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.png-link {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.png-link:hover {
  transform: scale(1.05);
}

.png-image {
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease;
  object-fit: cover;
}

.png-image:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer p {
  font-size: 1.125rem;
  color: #c4b5fd;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-size: 0.875rem;
  color: #d8b4fe;
}

/* PNG Section above Tokenomics */
.png-section {
  padding: 2rem;
  text-align: center;
}

.large-png {
  max-width: 100%;
  margin: 0 auto;
}

.large-png-image {
  width: 100%;
  max-width: 1500px;
  height: 500px;
  border-radius: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 0 auto;
  object-fit: cover;
  display: block;
}

.large-png-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .large-png-image {
    height: 200px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 1rem;
  }

  .logo-circle-image {
    width: 12rem;
    height: 12rem;
  }

  .video-player {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 4/3;
  }

  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .social-links {
    gap: 1.5rem;
  }

  .png-links {
    gap: 1.5rem;
  }

  .source-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .token-row {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
