/* ===== GLOBAL ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: relative;
    z-index: 9999;
}
.navbar-custom a {
    text-decoration: none !important;
    color: inherit;
}

.logo-text {
    font-weight: 700;
    color: #ff00cc;
    letter-spacing: 1px;
    text-decoration: none;
}

.menu-links a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.menu-links a:hover {
    color: #ff00cc;
}

/* BOTON MENU */
.btn-menu {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #0f0c29;
    padding: 20px;
    transition: 0.3s;
    z-index: 99999;
    box-shadow: 0 0 20px rgba(255,0,204,0.3);
}

.sidebar.active {
    left: 0;
}

/* HEADER */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-header span {
    color: #ff00cc;
    font-weight: bold;
}

.sidebar-header button {
    background: none;
    border: none;
    color: white;
    font-size: 25px;
}

/* LINKS */
.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 0;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #ff00cc;
    background: rgba(255, 0, 204, 0.1);
    padding-left: 10px;
    border-radius: 5px;
}

.sidebar a:active {
    background: rgba(255, 0, 204, 0.2);
}


/* ===== BOTÓN USUARIO ===== */
.btn-user {
    background: linear-gradient(45deg, #ff00cc, #6a00ff);
    border: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.btn-user:hover {
    box-shadow: 0 0 10px #ff00cc;
}

/* ===== MODALES ===== */
.modal-content.modal-dark {
    background: rgba(15, 12, 41, 0.95);
    border-radius: 15px;
    color: white;
    border: 1px solid rgba(255, 0, 204, 0.2);
    box-shadow: 0 0 25px rgba(255,0,204,0.3);
}

/* HEADER MODAL */
.modal-header h5 {
    color: #ff00cc;
    font-weight: 600;
}

/* INPUTS */
.custom-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s;
}

.custom-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.custom-input:focus {
    border-color: #ff00cc;
    box-shadow: 0 0 10px #ff00cc;
    background: rgba(255,255,255,0.08);
}

/* BOTÓN NEÓN */
.btn-neon {
    background: linear-gradient(45deg, #ff00cc, #6a00ff);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 25px;
    transition: 0.3s;
    font-weight: 500;
}

.btn-neon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff00cc;
}

/* LINKS MODAL */
.modal-body a {
    color: #ff00cc;
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    color: #ccc;
    padding: 40px 0;
}

.footer-title {
    color: #ff00cc;
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #ff00cc;
}

/* ===== EFECTO GLOBAL SUAVE ===== */
::selection {
    background: #ff00cc;
    color: white;
}

/* ===== EFECTO DROPDOWN ===== */
.dropdown-menu {
    background: rgba(15, 12, 41, 0.98) !important;
    border: 1px solid rgba(255, 0, 204, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255,0,204,0.3);
    z-index: 10000 !important;
}

.dropdown-item {
    color: #fff;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: rgba(255, 0, 204, 0.2);
    color: #fff;
}

/* TEXTO EN INPUTS */
.custom-input {
    color: #fff !important;
}

/* TEXTO MIENTRAS ESCRIBES */
.custom-input:focus {
    color: #fff !important;
}

/* PLACEHOLDER */
.custom-input::placeholder {
    color: rgba(255,255,255,0.6);
}

/* PARA ASEGURAR (BOOTSTRAP OVERRIDE) */
.form-control {
    color: #fff !important;
    background-color: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1);
}

/* CUANDO HACES CLICK */
.form-control:focus {
    color: #fff !important;
    background-color: rgba(255,255,255,0.08) !important;
    border-color: #ff00cc;
    box-shadow: 0 0 10px #ff00cc;
}