* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #050510;
  color: #fff;
  overflow-x: hidden;
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168,85,247,0.9) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(70px);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #00f7ff;
  text-shadow: 0 0 10px #00f7ff;
}

.nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.btn-nav {
  padding: 8px 14px;
  border: 1px solid #a855f7;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-nav:hover {
  background: #a855f7;
  box-shadow: 0 0 20px #a855f7;
}

/* CheatGlobal Button */
.btn-cheat {
  border: 1px solid #00f7ff;
}
.btn-cheat:hover {
  background: #00f7ff;
  box-shadow: 0 0 20px #00f7ff;
}

/* Telegram Button */
.btn-telegram {
  border: 1px solid #2ca5e0;
}
.btn-telegram:hover {
  background: #2ca5e0;
  box-shadow: 0 0 20px #2ca5e0;
}

/* Hero */
.hero {
  text-align: center;
  padding: 110px 20px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 12px;
  text-shadow: 0 0 20px #a855f7;
}

.hero p {
  opacity: 0.7;
  margin-bottom: 22px;
}

.btn-main {
  display: inline-block;
  padding: 14px 28px;
  background: #a855f7;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 20px #a855f7;
  transition: 0.3s;
}

.btn-main:hover {
  transform: scale(1.05);
}

/* Products */
.products {
  padding: 70px 10%;
  text-align: center;
}

.products h2 {
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px #00f7ff;
}

.highlight {
  border: 1px solid #00f7ff;
}

.price {
  margin: 18px 0;
  font-size: 22px;
  color: #00f7ff;
}

.btn-buy {
  padding: 10px 20px;
  background: #a855f7;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn-buy:hover {
  box-shadow: 0 0 20px #a855f7;
}

/* Product Image */
.product-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Badge */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #00f7ff;
  color: black;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 15px #00f7ff;
}

/* FAQ */
.faq {
  padding: 70px 10%;
}

.faq h2 {
  text-align: center;
  margin-bottom: 35px;
}

.faq-box {
  background: #0c0c18;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* Cart */
.cart-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  background: #00f7ff;
  color: black;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  z-index: 50;
}

.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.cart-content {
  background: #111;
  padding: 26px;
  border-radius: 14px;
  width: 360px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: red;
  color: white;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 8px;
}

.cart-content ul {
  margin: 16px 0;
  list-style: none;
}

.cart-content li {
  margin-bottom: 10px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 22px;
  background: #000;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 700px) {
  .header {
    padding: 18px 6%;
  }
  .products {
    padding: 50px 6%;
  }
  .hero {
    padding: 90px 10px;
  }
}
