@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Poppins:wght@400;600;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }
body { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: #050505; color: #fff; position: relative; padding-top: 100px; padding-bottom: 40px; overflow-x: hidden; }

/* FONDOS */
.bg-animation { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -3; background: #050505; }
.cyber-grid { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; background-image: linear-gradient(rgba(0, 242, 254, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 242, 254, 0.05) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.glow-orb { position: fixed; border-radius: 50%; filter: blur(90px); z-index: -1; animation: floatOrb 12s infinite ease-in-out alternate; }
.orb-1 { width: 350px; height: 350px; background: #00f2fe; top: -10%; left: -10%; opacity: 0.25; }
.orb-2 { width: 450px; height: 450px; background: #ff007f; bottom: -20%; right: -10%; opacity: 0.15; animation-delay: -5s; }
@keyframes floatOrb { 0% { transform: translateY(0px) scale(1); } 100% { transform: translateY(50px) scale(1.1); } }

/* NAVBAR & FOOTER */
.navbar { width: 100%; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(0, 242, 254, 0.2); position: fixed; top: 0; left: 0; z-index: 100; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }
.navbar .logo { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; color: #fff; font-weight: 900; letter-spacing: 1px; }
.navbar .logo i { color: #00f2fe; text-shadow: 0 0 10px #00f2fe; margin-right: 5px; }
.nav-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.nav-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: 0.3s; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: #00f2fe; text-shadow: 0 0 10px rgba(0, 242, 254, 0.5); }
.nav-nsfw { color: #ff3333 !important; text-shadow: 0 0 10px rgba(255, 51, 51, 0.5); border: 1px solid #ff3333; padding: 5px 12px; border-radius: 8px; }
.nav-nsfw:hover { background: #ff3333; color: #fff !important; box-shadow: 0 0 15px rgba(255, 51, 51, 0.8); }

footer { position: absolute; bottom: 10px; width: 100%; text-align: center; font-size: 0.75rem; color: #555; }
footer a { color: #00f2fe; text-decoration: none; }

/* CONTENEDOR */
.glass-container { background: rgba(15, 15, 15, 0.7); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 40px; width: 90%; max-width: 650px; text-align: center; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); z-index: 10; position: relative; margin: 20px 0; }
.container-large { max-width: 850px; }
.status-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.3); padding: 5px 15px; border-radius: 20px; font-size: 0.75rem; color: #25d366; font-weight: 600; margin-bottom: 20px; letter-spacing: 1px; }
.status-dot { width: 8px; height: 8px; background: #25d366; border-radius: 50%; box-shadow: 0 0 8px #25d366; animation: blink 1.5s infinite; }
@keyframes blink { 0% {opacity:1;} 50% {opacity:0.3;} 100% {opacity:1;} }
.glitch-text { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 900; color: #fff; text-shadow: 0 0 15px rgba(0, 242, 254, 0.8); letter-spacing: 1px; margin-bottom: 5px; line-height: 1.2;}
.subtitle { font-size: 0.95rem; color: #bbb; margin-bottom: 30px; }

/* INPUT & BOTONES PRINCIPALES */
.input-wrapper { display: flex; gap: 10px; margin-bottom: 25px; position: relative; width: 100%; }
.link-icon { position: absolute; left: 18px; top: 18px; color: #00f2fe; font-size: 1.1rem; }
input { flex: 1; padding: 15px 15px 15px 50px; border-radius: 12px; border: 1px solid rgba(0, 242, 254, 0.3); background: rgba(0, 0, 0, 0.6); color: white; font-size: 1rem; outline: none; transition: 0.3s; width: 100%;}
input:focus { border-color: #00f2fe; box-shadow: 0 0 20px rgba(0, 242, 254, 0.3); background: rgba(0,0,0,0.8); }
button { padding: 15px 30px; border-radius: 12px; border: none; background: linear-gradient(45deg, #00f2fe, #4facfe); color: #000; font-weight: 800; font-size: 1rem; cursor: pointer; transition: 0.3s; text-transform: uppercase; white-space: nowrap; }
button:hover { box-shadow: 0 0 25px rgba(0, 242, 254, 0.6); transform: translateY(-2px); }
.loader { width: 20px; height: 20px; border: 3px solid rgba(0,0,0,0.3); border-top: 3px solid #000; border-radius: 50%; animation: spin 1s linear infinite; margin: auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.oculto { display: none !important; }

/* RESULTADOS Y REDES */
.resultado-box { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 12px; }
.btn-download { padding: 15px; border-radius: 12px; font-weight: 700; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; text-transform: uppercase; font-size: 0.9rem; width: 100%; }
.btn-video { background: rgba(0, 242, 254, 0.1); color: #00f2fe; border: 1px solid rgba(0, 242, 254, 0.5); }
.error-msg { color: #ff4d4d; background: rgba(255, 77, 77, 0.1); padding: 12px; border-radius: 8px; margin-top: 15px; border: 1px solid #ff4d4d; }
.redes-soportadas { margin-top: 30px; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.icon-social { font-size: 2.2rem; transition: 0.3s ease; cursor: pointer; opacity: 0.6; }

/* TARJETAS BOT HTML */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; margin-bottom: 40px; }
.feature-card { background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(0, 242, 254, 0.15); border-radius: 15px; padding: 25px 20px; text-align: center; }
.feature-icon { font-size: 2.5rem; color: #00f2fe; margin-bottom: 15px; }
.feature-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 10px; font-family: 'Orbitron', sans-serif; }
.feature-card p { font-size: 0.85rem; color: #aaa; }
.premium-box { background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(0, 0, 0, 0.8)); border: 2px solid rgba(255, 215, 0, 0.4); border-radius: 20px; padding: 30px 20px; margin-bottom: 30px; }
.price { font-size: 3rem; font-weight: 900; color: #fff; text-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }

/* BÚSQUEDA NSFW */
.nsfw-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 15px; }
.nsfw-card { background: rgba(255, 51, 51, 0.1); border: 1px solid rgba(255, 51, 51, 0.4); padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; cursor: pointer; transition: 0.3s; text-align: left; }
.nsfw-card:hover { background: rgba(255, 51, 51, 0.3); transform: scale(1.02); }
.nsfw-card i { color: #ff3333; font-size: 1.5rem; }
.nsfw-card p { color: #fff; font-size: 0.9rem; margin: 0; line-height: 1.2; }

/* RELLENO (PASOS Y COMANDOS) */
.info-section { margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.info-section h3 { color: #00f2fe; font-family: 'Orbitron', sans-serif; margin-bottom: 25px; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 1px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.step-card { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); padding: 20px 15px; border-radius: 12px; transition: 0.3s; }
.commands-wrapper { margin-top: 30px; text-align: center; }
.commands-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 15px; }
.cmd-tag { background: rgba(0, 242, 254, 0.1); border: 1px solid #00f2fe; color: #00f2fe; padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; font-family: monospace; }

/* AGE GATE */
.age-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(15px); z-index: 9999; display: flex; justify-content: center; align-items: center; }
.modal-slide-in { animation: slideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes slideIn { 0% { transform: translateY(50px) scale(0.9); opacity: 0; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
.age-content { border-color: #ff3333 !important; padding: 40px 20px; width: 90%; max-width: 500px; background: rgba(10, 0, 0, 0.9) !important; box-shadow: 0 0 50px rgba(255, 0, 0, 0.3) !important;}
.warning-icon { font-size: 4rem; color: #ff3333; margin-bottom: 15px; filter: drop-shadow(0 0 10px #ff3333); animation: pulseRed 2s infinite; }
@keyframes pulseRed { 0% { transform: scale(1); } 50% { transform: scale(1.1); filter: drop-shadow(0 0 20px #ff3333); } 100% { transform: scale(1); } }
.age-buttons { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; justify-content: center; }
.btn-danger { background: #ff3333 !important; color: white !important; font-weight: bold; border: none; padding: 15px; border-radius: 8px; width: 100%; cursor: pointer; }
.btn-safe { background: transparent !important; border: 2px solid #555 !important; color: #aaa !important; font-weight: bold; padding: 15px; border-radius: 8px; width: 100%; cursor: pointer; }

/* ==============================================
   NUEVOS BOTONES INFERIORES ANIMADOS (PULSO)
============================================== */
.action-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; width: 100%; margin-top: 20px; }
.action-btn { 
    padding: 15px 30px; font-size: 1rem; width: 100%; max-width: 280px; 
    display: flex; align-items: center; justify-content: center; gap: 10px; 
    border-radius: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; 
    transition: all 0.3s ease; position: relative; overflow: hidden;
}

.btn-whatsapp-solid { 
    background: linear-gradient(45deg, #25D366, #1EBE5D); color: #fff; 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); 
    animation: pulseGreen 2s infinite; 
}
.btn-whatsapp-solid:hover { 
    background: #fff; color: #25D366; 
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8); transform: translateY(-3px) scale(1.05); 
    animation: none; 
}

.btn-creator { 
    background: rgba(255, 215, 0, 0.1); border: 2px solid #FFD700; color: #FFD700; 
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    animation: pulseGold 2.5s infinite; 
}
.btn-creator:hover { 
    background: #FFD700; color: #000; 
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); transform: translateY(-3px) scale(1.05); 
    animation: none;
}

/* Animaciones de Pulso Neón */
@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* REPARACIÓN PARA CELULARES */
@media (max-width: 700px) {
    body { padding-top: 130px; } 
    .navbar { flex-direction: column; padding: 15px 10px; gap: 10px; }
    .nav-links { width: 100%; justify-content: center; gap: 10px; }
    .nav-links a { font-size: 0.85rem; padding: 5px; }
    .glass-container { width: 95%; padding: 30px 15px; }
    .glitch-text { font-size: 1.8rem; }
    .input-wrapper { flex-direction: column; gap: 15px;}
    input { padding-left: 45px; }
    button { width: 100%; padding: 15px; }
    .features-grid { grid-template-columns: 1fr; }
    .age-content h2 { font-size: 1.5rem; }
    .action-buttons { flex-direction: column; }
    .action-btn { max-width: 100%; }
}