* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #0f0f0f; color: #fff; }

/* NAVBAR */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 40px; background: #1a1a1a; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1000; }
.nav-left { display: flex; align-items: center; gap: 25px; }
.menu-btn { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.nav-link { color: #ccc; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: color 0.2s; }
.nav-link:hover { color: #f97316; }
.logo { position: absolute; left: 50%; transform: translateX(-50%); }
.nav-right { display: flex; gap: 15px; }
.icon-btn { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; position: relative; }
.cart-count { position: absolute; top: -8px; right: -8px; background: #ef4444; color: #fff; font-size: 0.7rem; padding: 2px 6px; border-radius: 50%; }

/* HERO */
.hero-inicio { min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%); }
.hero-content { max-width: 800px; }
.badge-club { display: inline-block; background: #1a1a1a; border: 1px solid #333; padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; margin-bottom: 20px; color: #f97316; }
.hero-content h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-content h1 span { color: #ef4444; text-shadow: 0 0 20px rgba(239, 68, 68, 0.5); }
.hero-content p { color: #aaa; font-size: 1.1rem; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-red { background: #ef4444; color: #fff; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; transition: all 0.3s; }
.btn-red:hover { background: #dc2626; transform: translateY(-2px); }
.btn-outline { border: 2px solid #444; color: #fff; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; transition: all 0.3s; }
.btn-outline:hover { border-color: #f97316; color: #f97316; }

/* BENEFICIOS */
.beneficios { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px; background: #1a1a1a; border-top: 1px solid #333; }
.beneficio { display: flex; align-items: center; gap: 15px; padding: 20px; background: #252525; border-radius: 12px; }
.beneficio span { font-size: 1.5rem; }
.beneficio strong { color: #fff; font-size: 0.9rem; }
.beneficio p { color: #888; font-size: 0.8rem; }

/* CATÁLOGO */
.catalogo { padding: 60px 40px; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; color: #fff; }
.container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; max-width: 1400px; margin: 0 auto; }
.card { background: #1a1a1a; border-radius: 16px; overflow: hidden; border: 1px solid #333; transition: all 0.3s; position: relative; }
.card:hover { transform: translateY(-5px); border-color: #f97316; box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2); }
.badge { position: absolute; top: 15px; left: 15px; background: #ef4444; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; z-index: 10; }
.badge-nuevo { position: absolute; top: 15px; right: 15px; background: #22c55e; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; z-index: 10; }
.card-img { height: 180px; display: flex; align-items: center; justify-content: center; background: #252525; padding: 20px; }
.card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.card-img.minecraft { background: linear-gradient(135deg, #1a1a1a 0%, #2d5016 100%); }
.card-img.fortnite { background: linear-gradient(135deg, #1a1a1a 0%, #1e3a8a 100%); }
.boost-img { background: linear-gradient(135deg, #581c87 0%, #1a1a1a 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.boost-icon { font-size: 3rem; }
.boost-meses { background: #f97316; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card-desc { color: #888; font-size: 0.85rem; margin-bottom: 12px; }
.price { font-size: 1.4rem; font-weight: 800; color: #ef4444; margin-bottom: 15px; }
.btn-primary { width: 100%; background: #f97316; border: none; color: #fff; padding: 12px; border-radius: 8px; font-weight: 700; cursor: pointer; margin-bottom: 8px; transition: all 0.2s; }
.btn-primary:hover { background: #ea580c; }
.btn-secondary { width: 100%; background: transparent; border: 1px solid #444; color: #fff; padding: 12px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-secondary:hover { border-color: #f97316; color: #f97316; }

/* RESEÑAS */
.resenas { padding: 60px 40px; background: #1a1a1a; }
.resenas-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.resenas-left { display: flex; flex-direction: column; justify-content: center; }
.resenas-left .tag { display: inline-block; color: #f97316; font-size: 0.8rem; margin-bottom: 15px; }
.resenas-left h2 { font-size: 2.5rem; margin-bottom: 20px; }
.resenas-left p { color: #aaa; margin-bottom: 25px; line-height: 1.6; }
.resenas-right { display: grid; gap: 20px; }
.resena-card { background: #252525; padding: 25px; border-radius: 12px; border: 1px solid #333; }
.resena-card span { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.resena-card h4 { margin-bottom: 8px; color: #fff; }
.resena-card p { color: #888; font-size: 0.9rem; }

/* FAQ */
.faq { padding: 60px 40px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #1a1a1a; border-radius: 12px; overflow: hidden; border: 1px solid #333; }
.faq-question { display: flex; align-items: center; gap: 15px; padding: 20px; cursor: pointer; transition: all 0.2s; }
.faq-question:hover { background: #252525; }
.faq-tag { padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; }
.faq-tag.envio { background: #3b82f6; color: #fff; }
.faq-tag.garantia { background: #22c55e; color: #fff; }
.faq-tag.producto { background: #a855f7; color: #fff; }
.faq-tag.reembolso { background: #ef4444; color: #fff; }
.faq-tag.descuentos { background: #f59e0b; color: #fff; }
.faq-tag.precio { background: #06b6d4; color: #fff; }
.arrow { margin-left: auto; transition: transform 0.3s; }
.faq-item.active .arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 20px 20px; color: #888; display: none; line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }

/* CARRITO */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: none; z-index: 2000; }
.cart-sidebar { position: fixed; top: 0; right: -400px; width: 400px; height: 100vh; background: #1a1a1a; border-left: 1px solid #333; z-index: 2001; transition: right 0.3s; display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #333; }
.cart-header h2 { font-size: 1.2rem; }
.close-cart { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 15px; padding: 15px; background: #252525; border-radius: 10px; margin-bottom: 10px; }
.cart-item img { width: 60px; height: 60px; object-fit: contain; background: #333; border-radius: 8px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; margin-bottom: 8px; }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-controls button { width: 28px; height: 28px; border: none; background: #333; color: #fff; border-radius: 6px; cursor: pointer; font-size: 1rem; }
.qty-controls button:hover { background: #f97316; }
.quitar { background: none; border: none; color: #ef4444; font-size: 0.75rem; cursor: pointer; margin-top: 5px; }
.cart-footer { padding: 20px; border-top: 1px solid #333; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; margin-bottom: 15px; }
.cart-total strong { color: #ef4444; }
.btn-finalizar { width: 100%; background: #f97316; border: none; color: #fff; padding: 14px; border-radius: 10px; font-weight: 700; cursor: pointer; margin-bottom: 10px; }
.btn-finalizar:hover { background: #ea580c; }
.btn-vaciar { width: 100%; background: transparent; border: 1px solid #444; color: #888; padding: 12px; border-radius: 10px; cursor: pointer; }
.btn-vaciar:hover { border-color: #ef4444; color: #ef4444; }

/* MODALES */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; z-index: 3000; padding: 20px; }
.modal-content { background: #1a1a1a; border-radius: 20px; padding: 30px; max-width: 500px; width: 100%; border: 1px solid #333; text-align: center; position: relative; }
.modal-content h2 { color: #f97316; margin-bottom: 20px; font-size: 1.4rem; }
.close-btn { background: transparent; border: 1px solid #444; color: #fff; padding: 12px 30px; border-radius: 8px; cursor: pointer; font-size: 0.9rem; margin-top: 10px; }
.close-btn:hover { border-color: #f97316; color: #f97316; }

/* OPCIONES DE PAGO */
.opciones-pago { max-width: 380px !important; }
.opciones-container { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.opcion-pago { display: flex; align-items: center; gap: 15px; padding: 18px 20px; background: #252525; border: 2px solid #333; border-radius: 12px; cursor: pointer; transition: all 0.3s; text-align: left; width: 100%; color: #fff; }
.opcion-pago:hover { border-color: #f97316; transform: translateX(5px); }
.pago-icon { font-size: 1.5rem; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: #f97316; border-radius: 10px; }
.pago-text { flex: 1; font-size: 1rem; font-weight: 600; }
.pago-arrow { color: #f97316; font-size: 1.2rem; }

/* PAGO LITECOIN MEJORADO */
.pago-litecoin { max-width: 420px !important; padding: 28px !important; }
.producto-info-modal { background: #252525; padding: 15px; border-radius: 10px; margin-bottom: 15px; text-align: left; }
.producto-info-modal p { margin: 5px 0; color: #aaa; font-size: 0.9rem; }
.precio-modal { font-size: 1.6rem !important; color: #ef4444 !important; font-weight: 800; margin: 0 !important; }
.qr-container { background: white; padding: 20px; border-radius: 16px; margin: 20px auto; width: fit-content; }
.qr-code { width: 180px; height: 180px; display: block; }
.separador { color: #666; font-size: 0.9rem; margin: 15px 0; letter-spacing: 3px; }
.copia-texto { color: #888; font-size: 0.85rem; margin-bottom: 10px; }
.ltc-address-container { position: relative; margin: 15px 0; }
.ltc-address-box { background: #0d1117; padding: 15px 50px 15px 15px; border-radius: 10px; font-family: 'Courier New', monospace; font-size: 0.85rem; color: #58a6ff; border: 2px solid #f97316; word-break: break-all; cursor: pointer; text-align: left; }
.ltc-address-box:hover { background: #161b22; }
.btn-copiar { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); background: #f97316; border: none; padding: 8px 12px; border-radius: 6px; color: white; font-size: 0.75rem; font-weight: 600; cursor: pointer; }
.btn-copiar:hover { background: #ea580c; }
.instrucciones { background: #252525; border-radius: 12px; padding: 18px; margin: 20px 0; text-align: left; }
.instrucciones h3 { color: #f97316; font-size: 0.95rem; margin-bottom: 12px; }
.instrucciones ol { margin: 0; padding-left: 20px; color: #bbb; font-size: 0.85rem; line-height: 1.8; }
.instrucciones li { margin-bottom: 5px; }
.btn-discord-modal { display: block; width: 100%; background: #5865F2; color: white; padding: 14px; border-radius: 10px; text-decoration: none; font-weight: 700; margin-bottom: 12px; }
.btn-discord-modal:hover { background: #4752C4; }

/* TÉRMINOS */
.terms { display: flex; gap: 10px; font-size: 0.8rem; color: #aaa; margin-bottom: 12px; align-items: flex-start; cursor: pointer; padding: 10px; background: #252525; border-radius: 8px; }
.terms input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: #f97316; }
.terms a { color: #f97316; }
.terms-error { color: #ef4444; font-size: 0.8rem; margin-bottom: 10px; display: none; animation: shake 0.5s; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

/* FOOTER */
footer { text-align: center; padding: 40px; color: #666; font-size: 0.85rem; border-top: 1px solid #333; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .beneficios { grid-template-columns: repeat(2, 1fr); }
  .resenas-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 15px 20px; }
  .nav-link { display: none; }
  .hero-content h1 { font-size: 2.2rem; }
  .beneficios { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
  .modal-content { padding: 20px; }
  .pago-litecoin { padding: 20px !important; }
  .qr-code { width: 150px; height: 150px; }
}