@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

:root {
  --primary-color: #00bfff;
  --secondary-color: #111;
  --text-color: #ffffff;
  --neon-glow: 0 0 10px #00bfff, 0 0 20px #00bfff;
}

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

body {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #000010, #001122, #000010);
  background-size: 400% 400%;
  animation: neonBG 12s ease infinite;
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 40px 20px;
}

.container {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  padding: 50px 30px;
  border-radius: 20px;
  max-width: 950px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
  text-align: center;
}

.logo {
  width: 120px;
  height: auto;
  animation: pulse 3s infinite ease-in-out;
  margin-bottom: 20px;
}

.title {
  font-size: 3rem;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  margin-bottom: 20px;
  animation: float 5s ease-in-out infinite;
}

.description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #ccc;
}

.contract {
  font-size: 1.1rem;
  background: #000;
  border: 1px solid var(--primary-color);
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 40px;
  cursor: pointer;
  user-select: all;
  color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

.roadmap-section {
  margin: 60px auto;
  max-width: 800px;
  text-align: center;
}

.roadmap-title {
  font-size: 2.5rem;
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
  margin-bottom: 30px;
}

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roadmap-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00f0ff;
  border-radius: 12px;
  padding: 20px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px #00f0ff33;
  position: relative;
}

.roadmap-item:hover,
.roadmap-item.active {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #00f0ff88;
}

.roadmap-item h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow: 0 0 5px #00f0ff;
}

.explanation {
  font-size: 0.95rem;
  color: #bbbbbb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.roadmap-item.active .explanation {
  max-height: 100px;
}

.socials {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

a.button {
  text-decoration: none;
  background: #001f3f;
  padding: 12px 24px;
  border-radius: 8px;
  color: #00bfff;
  font-weight: bold;
  border: 1px solid #00bfff;
  box-shadow: var(--neon-glow);
  transition: background 0.3s ease;
}

a.button:hover {
  background: #003366;
}

/* Neon Background Animation */
@keyframes neonBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Logo animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Title float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px #00f0ff);
  cursor: pointer;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #00f0ff);
}
