
body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: url('assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  min-height: 100vh;
  padding: 30px 20px;
}

.hero {
  text-align: center;
  padding: 60px 20px 30px;
}

.main-logo {
  width: 100px;
  margin-bottom: 20px;
}

.title {
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #a741f4, 0 0 20px #8e2de2;
  animation: pulse 3s infinite;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #ccc;
}

.buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.buttons .btn:hover {
  background: #fff;
  color: #4a00e0;
  box-shadow: 0 0 10px #fff, 0 0 20px #8e2de2;
  transform: scale(1.05);
}

.stats {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 30px 10px;
  margin: 20px 0;
}

.stat {
  font-size: 1rem;
  color: #bbb;
}

.stat .value {
  display: block;
  font-size: 2rem;
  color: #a741f4;
  font-weight: bold;
}

.features {
  text-align: center;
  margin-top: 40px;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.feature {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(255,255,255,0.3);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #fff;
}

footer {
  margin-top: 60px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

@keyframes pulse {
  0% {text-shadow: 0 0 10px #a741f4, 0 0 20px #8e2de2;}
  50% {text-shadow: 0 0 20px #fff, 0 0 30px #8e2de2;}
  100% {text-shadow: 0 0 10px #a741f4, 0 0 20px #8e2de2;}
}


.commands {
  text-align: center;
  margin-top: 60px;
}

.commands h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 30px;
}

.command-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.command {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px;
  border-radius: 16px;
  font-size: 1rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(174, 0, 255, 0.3);
}

.footer {
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.command-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-in-out both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.collapsible-commands {
  margin-top: 40px;
  padding: 0 20px;
}

.collapsible-commands details {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 12px;
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.collapsible-commands summary {
  font-size: 1.2rem;
  font-weight: 600;
}

.collapsible-commands p {
  margin-top: 8px;
.feature-box {
  background: rgba(255,255,255,0.05);
  padding: 20px 30px;
  border-radius: 15px;
  min-width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  background: #fff;
  color: #4a00e0;
  box-shadow: 0 0 10px #fff, 0 0 20px #8e2de2;
  transform: scale(1.05);
}
  padding-left: 10px;
  line-height: 1.6;
}
.feature-box {
  background: rgba(255,255,255,0.05);
  padding: 20px 30px;
  border-radius: 15px;
  min-width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  background: #fff;
  color: #4a00e0;
  box-shadow: 0 0 10px #fff, 0 0 20px #8e2de2;
  transform: scale(1.05);
}

.command-box {
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 12px;
  color: white;
  font-family: sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

.command-box:hover {
  background: #fff;
  color: #4a00e0;
  box-shadow: 0 0 10px #fff, 0 0 20px #8e2de2;
  transform: scale(1.05);
}
