/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d2b;
    color: #ffffff;
    line-height: 1.6;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* ALERT */
  .alert {
    background: #111;
    color: #ffd700;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  
  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #111;
  }
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .nav-links a {
    font-weight: 500;
  }
  .btn {
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
  }
  .wallet-btn {
    background: #00ffae;
    color: #000;
    padding: 0.6rem 1.2rem;
  }
  
  /* HERO */
  .hero {
    position: relative;
    text-align: center;
    padding: 6rem 2rem;
    background: url('img/stars-bg.png') center/cover no-repeat;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .connect-card {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(0,0,0,0.4);
    padding: 2rem;
    border-radius: 10px;
  }
  .strip {
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
      to right,
      #f027ba,
      #f027ba 10px,
      transparent 10px,
      transparent 20px
    );
    margin-bottom: 1.5rem;
    border-radius: 3px;
  }
  .decoration {
    position: absolute;
  }
  .earth {
    top: 10%;
    right: 5%;
    width: 60px;
  }
  .cube {
    top: 40%;
    right: 20%;
    width: 50px;
  }
  .comet {
    top: 60%;
    right: 10%;
    width: 80px;
  }
  
  /* SECTION COMMON */
  section {
    padding: 4rem 2rem;
  }
  section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  /* COLORS */
  .text-pink { color: #f027ba; }
  .text-green { color: #00ffae; }
  
  /* USAGE */
  .steps {
    max-width: 800px;
    margin: 0 auto;
    list-style: decimal inside;
    font-size: 1rem;
  }
  .steps li {
    margin-bottom: 1rem;
  }
  .desc {
    display: block;
    margin-left: 1rem;
    color: #ccc;
    font-weight: 400;
  }
  
  /* MISSION / FEATURES */
  .mission-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
  }
  .features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .feature-card {
    background: rgba(0,0,0,0.4);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    width: 200px;
  }
  .feature-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  /* NEXT WINNER */
  .winner-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .winner-card {
    background: #fff;
    color: #000;
    padding: 1rem;
    border-radius: 10px;
    width: 200px;
    text-align: center;
  }
  .winner-card h3 {
    margin-bottom: 1rem;
  }
  .winner-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    background: #0d0d2b;
    padding: 1rem;
  }
  .market-cap {
    font-weight: 600;
  }
  
  /* FAQ */
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    margin-bottom: 2rem;
  }
  .faq-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  /* COMMUNITY */
  .community {
    text-align: center;
  }
  .telegram-icon {
    display: block;
    margin: 0 auto 1rem;
    width: 40px;
  }
  
  /* FOOTER */
  footer {
    background: #111;
  }
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
  }
  .footer-content .logo {
    margin-bottom: 1rem;
  }
  .support {
    margin-top: 1rem;
  }
  footer hr {
    border: none;
    border-top: 1px solid #333;
  }
  footer .copyright {
    text-align: center;
    padding: 1.5rem 0;
  }
  /* Fix nav menu stacking on mobile */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    display: block;
    text-align: center;
    width: 100%;
  }

  .logo {
    margin-bottom: 1rem;
  }

  /* Ensure connect card text isn't hidden by decoration images */
  .connect-card {
    position: relative;
    z-index: 2;
  }

  /* Push floating images behind content */
  .decoration {
    z-index: 0 !important;
    opacity: 0.6;
  }
}
  