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

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #02121e, #022f33);
  color: white;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('oddones-art.png') no-repeat center center;
  background-size: 600px;
  opacity: 0.08;
  pointer-events: none;
  animation: moveBackground 30s linear infinite;
  z-index: 0;
}

@keyframes moveBackground {
  0% { transform: translate(0px, 0px); }
  50% { transform: translate(-20px, -10px); }
  100% { transform: translate(0px, 0px); }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: rgba(2, 10, 25, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  color: #ff00aa;
  text-shadow: 0 0 8px #ff00aa, 0 0 15px #ff00aa, 0 0 30px #ff00aa;
  letter-spacing: 2px;
}

nav {
  display: flex;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
}

nav a:hover {
  color: #ff00aa;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  color: cyan;
  text-shadow: 0 0 10px cyan, 0 0 20px cyan;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.feature-box {
  background-color: rgba(2, 10, 25, 0.9);
  border: 1px solid cyan;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
}

.feature-box h3 {
  color: #ff00aa;
}

.bot-btn {
  display: inline-block;
  background: linear-gradient(90deg, cyan, #ff00aa);
  padding: 12px 30px;
  border-radius: 25px;
  color: black;
  font-weight: bold;
  margin-top: 20px;
  text-decoration: none;
}

.bot-btn:hover {
  opacity: 0.9;
}

#about {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

#about h2 {
  font-size: 2.5rem;
  color: cyan;
  margin-bottom: 20px;
  text-shadow: 0 0 10px cyan;
}

#about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* COMMUNITY SECTION */
#community {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

#community h2 {
  font-size: 2.5rem;
  color: cyan;
  margin-bottom: 20px;
  text-shadow: 0 0 10px cyan;
}

#community p {
  max-width: 600px;
  margin: auto;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.community-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.community-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.community-btn i {
  font-size: 1.4rem;
}

.community-btn.discord {
  background: #5865F2;
  color: white;
  box-shadow: 0 0 10px #5865F2, 0 0 20px #5865F2;
}

.community-btn.discord:hover {
  background: #4752c4;
  box-shadow: 0 0 15px #5865F2, 0 0 30px #5865F2;
}

.community-btn.twitter {
  background: black;
  color: white;
  box-shadow: 0 0 10px white, 0 0 20px white;
}

.community-btn.twitter:hover {
  background: #1a1a1a;
  box-shadow: 0 0 15px white, 0 0 30px white;
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(2, 10, 25, 0.95);
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 10px;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
  .feature-box {
    width: 90%;
  }
}
