/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #050816;
  color: white;
}

/* NAVIGATION */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.logo img {
  height: 28px;
  width: 28px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

.nav-link:hover {
  color: #6366f1;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

/* BUTTONS */
.btn {
  background: #4f46e5;
  padding: 8px 16px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
}

.btn:hover {
  background: #6366f1;
}

.btn-outline {
  padding: 8px 16px;
  border-radius: 6px;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s;
}

.btn-outline:hover {
  border-color: #6366f1;
}

/* CONTROL PANEL BUTTON */
.control-panel-btn {
  background: #0d6efd;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: 0.2s ease;
}

.control-panel-btn:hover {
  background: #0b5ed7;
}

/* DROPDOWNS */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 32px;
  left: 0;
  background: #0b1020;
  border-radius: 10px;
  padding: 10px 0;
  width: 260px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  transition: 0.15s;
}

.dropdown-item:hover {
  background: rgba(99,102,241,0.15);
}

.item-title {
  font-size: 14px;
  font-weight: 600;
}

.item-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

.view-more {
  text-align: center;
  font-weight: 600;
  color: #6366f1;
}

/* HERO */
.hero {
  display: flex;
  gap: 40px;
  padding: 60px 40px;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 32px;
  margin: 15px 0;
}

.hero p {
  font-size: 14px;
  color: #cbd5f5;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #4f46e5;
  font-size: 12px;
  opacity: 0.8;
}

.features {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.features h3 {
  margin: 0 0 5px;
  font-size: 14px;
}

.features p {
  margin: 0;
  font-size: 12px;
  color: #9ca3af;
}

/* CONSOLE */
.console-box {
  flex: 1;
  background: #0b1020;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #4f46e5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.console-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
  opacity: 0.7;
}

.dots {
  display: flex;
  gap: 4px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.red { background: #ff4d4d; }
.yellow { background: #ffd633; }
.green { background: #4dff4d; }

#console-output {
  font-family: monospace;
  font-size: 13px;
  color: #4dff4d;
  white-space: pre-wrap;
}

/* PRICING */
.pricing {
  text-align: center;
  padding: 60px 40px;
}

.pricing h2 {
  margin: 0;
  font-size: 24px;
}

.pricing .sub {
  margin-top: 8px;
  font-size: 13px;
  color: #9ca3af;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.card {
  flex: 1;
  background: #0b1020;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

.card.highlight {
  border: 2px solid #6366f1;
}

.card h3 {
  margin-top: 0;
  font-size: 16px;
}

.card .price {
  margin: 10px 0;
  font-size: 22px;
  font-weight: bold;
}

.card .price span {
  font-size: 12px;
  color: #9ca3af;
}

.card p {
  font-size: 13px;
  color: #9ca3af;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 13px;
  color: #e5e7eb;
}

.card ul li {
  margin-bottom: 4px;
}

/* PROMO */
.promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0b1020;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #6366f1;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.promo .code {
  font-family: monospace;
  font-weight: bold;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  opacity: 0.6;
  font-size: 12px;
}

.footer-links {
  margin-top: 6px;
}

.footer-links a {
  margin: 0 6px;
  color: #9ca3af;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .pricing-grid {
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-buttons {
    width: 100%;
    justify-content: center;
  }
}