:root {
  --sol-purple: #9945FF;
  --sol-green: #14F195;
  --sol-cyan: #00C2FF;
  --dark-bg: #0d0d0d;
  --dark-overlay: rgba(0, 0, 0, 0.7);
}

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

body {
  font-family: Arial, sans-serif;
  color: white;
  background: var(--dark-bg);
  scroll-behavior: smooth;
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px;
  background: transparent;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--sol-purple);
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}


.hero-section {
  height: 100vh;
  background: url('solana-coin-background.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--sol-purple), var(--sol-green), var(--sol-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
}


#giveawayContainer {
  display: flex;
  justify-content: center;
}

#enterBtn {
  padding: 15px 50px;
  border-radius: 50px;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  background: linear-gradient(45deg, var(--sol-purple), var(--sol-green));
}

.giveaway-form {
  display: flex;
  gap: 10px;
}

.giveaway-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  width: 260px;
}

.giveaway-form button {
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  color: white;
  background: linear-gradient(45deg, var(--sol-purple), var(--sol-green));
}


main {
  padding: 100px 20px;
  max-width: 900px;
  margin: auto;
}

.info-card {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
}

.fade-out {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.fade-in {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}



