/* RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  transition: all 0.2s ease;
}

body {
  font-family:'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #0b1020, #050814);
  color:#e6f0ff;
  line-height:1.6;
}

/* CONTAINER */
.container {
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* HEADER */
.header {
  position:sticky;
  top:0;
  backdrop-filter:blur(10px);
  background:rgba(5,8,20,0.7);
  border-bottom:1px solid rgba(0,224,255,0.2);
  z-index:999;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

.logo img {
  width:120px;
}

/* MENU */
.menu a {
  color:#cfe6ff;
  margin-left:15px;
  text-decoration:none;
  position:relative;
}

.menu a:hover {
  color:#00e0ff;
}

/* PRODUCT */
.product {
  margin-top:40px;
}

.product-grid {
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

/* IMAGE */
.product-images {
  flex:1;
}

.glass-box {
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  padding:15px;
  border-radius:12px;
}

.main-img {
  width:100%;
  border-radius:10px;
}

.main-img:hover {
  transform:scale(1.03);
  box-shadow:0 0 20px rgba(0,224,255,0.4);
}

.img-caption {
  font-size:13px;
  margin-top:10px;
  opacity:0.7;
}

/* INFO */
.product-info {
  flex:1;
}

.product-title {
  font-size:26px;
  margin-bottom:10px;
  color:#66e0ff;
}

.price {
  margin-bottom:10px;
  color:#00ffaa;
}

/* USERS */
.live-users {
  margin:10px 0;
  color:#00ffaa;
  font-size:14px;
}

/* ACTIVITY */
#activityLog {
  font-size:13px;
  opacity:0.7;
  margin-bottom:15px;
}

/* BUTTON */
.btn {
  display:block;
  padding:12px;
  text-align:center;
  border-radius:8px;
  margin:8px 0;
  text-decoration:none;
}

.btn.primary {
  background:linear-gradient(135deg,#00e0ff,#007bff);
  box-shadow:0 0 15px #00e0ff;
  color:white;
}

.btn.primary:hover {
  box-shadow:0 0 25px #00e0ff;
}

.btn.outline {
  border:1px solid #00e0ff;
  color:#00e0ff;
}

.btn:hover {
  transform:translateY(-2px);
}

/* DESC */
.desc p {
  margin-bottom:10px;
}

/* STATS */
.stats {
  display:flex;
  gap:10px;
  margin-top:20px;
  flex-wrap:wrap;
}

.stat-box {
  flex:1;
  min-width:200px;
  background:rgba(255,255,255,0.05);
  padding:15px;
  border-radius:10px;
  border:1px solid rgba(0,224,255,0.2);
}

/* FAQ */
.faq {
  margin-top:40px;
}

.faq h2 {
  margin-bottom:10px;
}

.faq-question {
  width:100%;
  padding:12px;
  background:#0e1635;
  border:none;
  color:#fff;
  text-align:left;
  cursor:pointer;
  margin-top:5px;
}

.faq-answer {
  display:none;
  padding:10px;
  background:#111a3a;
}

/* CARDS */
.cards {
  display:flex;
  gap:20px;
  margin-top:20px;
  flex-wrap:wrap;
}

.card {
  flex:1;
  min-width:200px;
  background:rgba(255,255,255,0.05);
  padding:20px;
  border-radius:10px;
}

/* FOOTER */
.footer {
  margin-top:60px;
  padding:40px 0;
  border-top:1px solid rgba(0,224,255,0.2);
}

.footer-grid {
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-logo {
  width:120px;
  margin-bottom:10px;
}

.footer-links a {
  display:block;
  color:#cfe6ff;
  margin:5px 0;
  text-decoration:none;
}

.footer-links a:hover {
  color:#00e0ff;
}

.social a {
  margin-right:10px;
  color:white;
}

.footer-payments {
  text-align:center;
  margin-top:20px;
}

.payments-logos i {
  font-size:26px;
  margin:10px;
}

.footer-bottom {
  text-align:center;
  margin-top:20px;
  font-size:13px;
  opacity:0.7;
}

/* LOADER */
#loader {
  position:fixed;
  width:100%;
  height:100%;
  background:#050814;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.spinner {
  width:50px;
  height:50px;
  border:4px solid #1a2a5a;
  border-top:4px solid #00e0ff;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin {
  to { transform:rotate(360deg); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .product-grid {
    flex-direction:column;
  }

  .footer-grid {
    flex-direction:column;
    text-align:center;
  }

  .menu {
    display:none;
  }
}