@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Permanent+Marker&display=swap');

:root {
    --neon-pink: #ff2a85;
    --neon-cyan: #00f3ff;
    --dark-bg: #0b0c10;
}

body {
    background-color: var(--dark-bg);
    background-image: 
        linear-gradient(rgba(11, 12, 16, 0.95), rgba(11, 12, 16, 0.95)),
        url('https://images.unsplash.com/photo-1514214246283-d427a95c5d2f?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    color: #e0e6ed;
    overflow-x: hidden;
}

/* NO SCROLLBAR POLICY */
::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Tipografía de Miami */
.font-miami {
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 2px;
}

/* Efectos de Neón */
.neon-text-pink {
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink);
}

.neon-text-cyan {
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
}

.neon-border {
    box-shadow: 0 0 10px var(--neon-cyan), inset 0 0 5px var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
}

.neon-border-pink {
    box-shadow: 0 0 10px var(--neon-pink), inset 0 0 5px var(--neon-pink);
    border: 1px solid var(--neon-pink);
}

/* Glassmorphism Premium */
.glass-panel {
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Secciones y Animaciones */
.section-content { 
    display: none; 
    animation: fadeScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.section-content.active { 
    display: block; 
}

@keyframes fadeScale {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse-neon {
    0%, 100% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 15px rgba(0, 243, 255, 0.3)); }
    50% { transform: scale(1.02); filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 42, 133, 0.4)); }
}

.animate-neon-logo {
    animation: pulse-neon 4s ease-in-out infinite;
}

.blend-screen {
    mix-blend-mode: screen;
}

/* Minimalist Inputs (CreativosRP Style) */
.modern-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    padding: 10px 0;
    color: white;
    transition: all 0.3s ease;
}
.modern-input:focus {
    outline: none;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 10px 10px -10px var(--neon-cyan);
}

.modern-textarea {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 16px;
    color: white;
    transition: all 0.3s ease;
    resize: none;
}
.modern-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

/* Modals */
.modal-overlay { 
    display: none; 
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animaciones Landing Page Miami Roleplay */
@keyframes titleSlideDown {
    from { transform: translateY(-30px); opacity: 0; filter: blur(10px); }
    to { transform: translateY(0); opacity: 1; filter: blur(0); }
}

@keyframes titleSlideUp {
    from { transform: translateY(30px); opacity: 0; filter: blur(10px); }
    to { transform: translateY(0); opacity: 1; filter: blur(0); }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255,42,133,0.5), 0 0 20px rgba(255,42,133,0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255,42,133,0.8), 0 0 40px #ff2a85, 0 0 60px #ff2a85;
    }
}

.animate-title-miami {
    animation: titleSlideDown 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-title-roleplay {
    animation: titleSlideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, neonPulse 3s ease-in-out infinite alternate 1.2s;
}
