* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  margin: 0;
  background: #0b0e14;
  color: #fff;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #1e90ff22, transparent 40%),
    radial-gradient(circle at 80% 80%, #00ffaa22, transparent 40%);
  z-index: -1;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.nav a {
  color: #9aa;
  text-decoration: none;
  margin-left: 20px;
}

.hero {
  text-align: center;
  padding: 120px 20px;
}

.section {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.product {
  background: #121722;
  border: 1px solid #1d2333;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-5px);
  border-color: #4da6ff;
}

.price {
  color: #4da6ff;
  margin-top: 10px;
  font-weight: 600;
}

.btn {
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn.discord {
  background: #5865f2;
  color: #fff;
}

.btn.telegram {
  background: #2aabee;
  color: #fff;
}

/* SIDE PANEL */
.side-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: #121722;
  border-left: 1px solid #1d2333;
  transition: right 0.4s ease;
  z-index: 999;
}

.side-panel.open {
  right: 0;
}

.side-content {
  padding: 30px;
}

.side-content .close {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 18px;
}

.actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
