@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0d0b1f;
  background-image: radial-gradient(circle at center, #32135a, #0d0b1f);
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

.logo {
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #c7a1ff;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffffff;
}

.hero {
  text-align: center;
  margin: 60px auto 40px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #ffffff;
}

.hero p {
  color: #c7a1ff;
  font-size: 1.1rem;
  margin-top: 10px;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
}

.card {
  background: rgba(24, 12, 40, 0.85);
  border: 2px solid #7e3ff2;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 0 15px #7e3ff2;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #a765ff;
}

.platform-icon {
  width: 80px;
  margin-bottom: 20px;
}

.card h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.card p {
  color: #c7a1ff;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  background: linear-gradient(90deg, #7e3ff2, #a765ff);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn:hover {
  background: linear-gradient(90deg, #a765ff, #7e3ff2);
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #888;
}


.features-section {
  background: rgba(126, 63, 242, 0.1); /* soft purple transparent background */
  border: 2px solid #7e3ff2;
  border-radius: 15px;
  margin: 50px auto 30px;
  padding: 40px 30px;
  max-width: 1000px;
  color: white;
  text-align: center;
  box-shadow: 0 0 20px #7e3ff2;
}

.features-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #a765ff;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1 1 250px;
  background: #24184d;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 0 15px #a765ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #d49fff;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #d1b3ff;
}

.feature-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #c7a1ff;
}

.commands-box {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 30px 25px;
  background: rgba(24, 12, 40, 0.9);
  border: 2px solid #7e3ff2;
  border-radius: 15px;
  color: #c7a1ff;
  box-shadow: 0 0 25px #7e3ff2;
  font-family: 'Courier New', Courier, monospace;
}

.commands-box h2 {
  color: #a765ff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.commands-box pre {
  white-space: pre-wrap;       /* Wrap text to avoid horizontal scroll */
  max-height: 450px;            /* limit height */
  overflow-y: auto;             /* vertical scroll */
  font-size: 0.9rem;
  line-height: 1.4;
  padding-right: 10px;          /* space for scrollbar */
  user-select: text;            /* allow copying */
  color: #e0d9ff;
  background: rgba(12, 6, 30, 0.8);
  border-radius: 10px;
}

